Blame view

vendor/yiisoft/yii2-gii/generators/module/default/view.php 625 Bytes
70f4f18b   Administrator   first_commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  /* @var $this yii\web\View */
  /* @var $generator yii\gii\generators\module\Generator */
  ?>
  <div class="<?= $generator->moduleID . '-default-index' ?>">
      <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>
  </div>