You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

view.php 625B

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