view.php 450 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * This is the template for generating an action view file.
  4. *
  5. * @var yii\web\View $this
  6. * @var yii\gii\generators\controller\Generator $generator
  7. * @var string $action the action ID
  8. */
  9. echo "<?php\n";
  10. ?>
  11. /**
  12. * @var yii\web\View $this
  13. */
  14. <?= "?>" ?>
  15. <h1><?= $generator->getControllerID() . '/' . $action ?></h1>
  16. <p>
  17. You may change the content of this page by modifying
  18. the file <code><?= '<?=' ?> __FILE__; ?></code>.
  19. </p>