Yii2 Bootstrap 3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1.9 KiB

Yii2 view renderers

By default Yii uses PHP as template language but you can configure it to be able to render templates with special engines such as Twig or Smarty.

The component responsible for rendering a view is called view. You can add a custom template engines as follows:

array(
	'components' => array(
		'view' => array(
			'class' => 'yii\base\View',
			'renderers' => array(
				'tpl' => array(
					'class' => 'yii\renderers\SmartyViewRenderer',
				),
				'twig' => array(
					'class' => 'yii\renderers\TwigViewRenderer',
					'twigPath' => '@app/vendors/Twig',
				),
				// ...
			),
		),
	),
)

Twig

In order to use Twig you need to put you templates in files with extension .twig (or another one if configured differently). Also you need to specify this extension explicitly when calling $this->render() or $this->renderPartial() from your controller:

echo $this->render('renderer.twig', array('username' => 'Alex'));

Additional functions

Additionally to regular Twig syntax the following is available in Yii:

<a href="{{ path('blog/view', {'alias' : post.alias}) }}">{{ post.title }}</a>

path function calls Html::url() internally.

Additional variables

  • app = \Yii::$app
  • this = current View object

Smarty

In order to use Smarty you need to put you templates in files with extension .tpl (or another one if configured differently). Also you need to specify this extension explicitly when calling $this->render() or $this->renderPartial() from your controller:

echo $this->render('renderer.tpl', array('username' => 'Alex'));

Additional functions

Additionally to regular Smarty syntax the following is available in Yii:

<a href="{path route='blog/view' alias=$post.alias}">{$post.title}</a>

path function calls Html::url() internally.

Additional variables

  • $app = \Yii::$app
  • $this = current View object