Files
yii2/tests/data/views/pageCacheLayout.php
2016-12-08 15:06:56 +01:00

16 lines
291 B
PHP

<?php
/** @var \yii\web\View $this */
/** @var string $static */
$this->beginPage();
$this->head();
$this->beginBody();
?>
{
"static": "<?= $static ?>",
"dynamic": "<?= $this->renderDynamic('return Yii::$app->params[\'dynamic\'];') ?>"
}
<?php
$this->endBody();
$this->endPage();
?>