view.php 477 Bytes
Newer Older
Qiang Xue committed
1 2
<?php
/**
Qiang Xue committed
3 4 5 6 7
 * This is the template for generating an action view file.
 *
 * @var yii\base\View $this
 * @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 13 14 15 16
?>
/**
 * @var yii\base\View $this
 */
<?php echo "?>"; ?>

17
<h1><?php echo $generator->getControllerID() . '/' . $action; ?></h1>
Qiang Xue committed
18 19 20 21 22

<p>
	You may change the content of this page by modifying
	the file <code><?php echo '<?php'; ?> echo __FILE__; ?></code>.
</p>