Blame view

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