view.php 452 Bytes
Newer Older
Qiang Xue committed
1 2
<?php
/**
Qiang Xue committed
3
 * This is the template for generating an action view file.
Qiang Xue committed
4
 */
5

6 7 8 9
/* @var $this yii\web\View */
/* @var $generator yii\gii\generators\controller\Generator */
/* @var $action string the action ID */

10
echo "<?php\n";
Qiang Xue committed
11
?>
12
/* @var $this yii\web\View */
Alexander Makarov committed
13
<?= "?>" ?>
Qiang Xue committed
14

Alexander Makarov committed
15
<h1><?= $generator->getControllerID() . '/' . $action ?></h1>
Qiang Xue committed
16 17

<p>
18 19
    You may change the content of this page by modifying
    the file <code><?= '<?=' ?> __FILE__; ?></code>.
Qiang Xue committed
20
</p>