view.php 627 B

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