view.php 450 Bytes
Newer Older
Qiang Xue committed
1 2
<?php
/**
Qiang Xue committed
3 4
 * This is the template for generating an action view file.
 *
Alexander Makarov committed
5
 * @var yii\web\View $this
Qiang Xue committed
6 7
 * @var yii\gii\generators\controller\Generator $generator
 * @var string $action the action ID
Qiang Xue committed
8
 */
9 10

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

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

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