view.php 582 Bytes
Newer Older
1 2
<?php
/**
Alexander Makarov committed
3
 * @var yii\web\View $this
4 5 6
 * @var yii\gii\generators\module\Generator $generator
 */
?>
Alexander Makarov committed
7
<div class="<?= $generator->moduleID . '-default-index' ?>">
8
	<h1><?= "<?= " ?>$this->context->action->uniqueId ?></h1>
9
	<p>
10 11 12
		This is the view content for action "<?= "<?= " ?>$this->context->action->id ?>".
		The action belongs to the controller "<?= "<?= " ?>get_class($this->context) ?>"
		in the "<?= "<?= " ?>$this->context->module->id ?>" module.
13 14 15
	</p>
	<p>
		You may customize this page by editing the following file:<br>
16
		<code><?= "<?= " ?>__FILE__ ?></code>
17 18
	</p>
</div>