12345678910111213141516171819202122 |
- <?php
- /**
- * This is the template for generating an action view file.
- *
- * @var yii\web\View $this
- * @var yii\gii\generators\controller\Generator $generator
- * @var string $action the action ID
- */
- echo "<?php\n";
- ?>
- /**
- * @var yii\web\View $this
- */
- <?= "?>" ?>
- <h1><?= $generator->getControllerID() . '/' . $action ?></h1>
- <p>
- You may change the content of this page by modifying
- the file <code><?= '<?=' ?> __FILE__; ?></code>.
- </p>
|