view.php 625 Bytes
Newer Older
1
<?php
2 3
/* @var $this yii\web\View */
/* @var $generator yii\gii\generators\module\Generator */
4
?>
Alexander Makarov committed
5
<div class="<?= $generator->moduleID . '-default-index' ?>">
6 7 8 9 10 11 12 13 14 15
    <h1><?= "<?= " ?>$this->context->action->uniqueId ?></h1>
    <p>
        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.
    </p>
    <p>
        You may customize this page by editing the following file:<br>
        <code><?= "<?= " ?>__FILE__ ?></code>
    </p>
16
</div>