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.
19 lines
382 B
19 lines
382 B
<?php |
|
|
|
use yii\helpers\Html; |
|
|
|
/** |
|
* @var $this \yii\base\View |
|
* @var $generator \yii\gii\Generator |
|
*/ |
|
|
|
$this->title = $generator->getName(); |
|
?> |
|
<div class="default-view"> |
|
<h1><?php echo Html::encode($generator->getName()); ?></h1> |
|
<p><?php echo $generator->getDescription(); ?></p> |
|
|
|
<?php echo $generator->renderForm(); ?> |
|
|
|
<?php echo $generator->renderFileList(); ?> |
|
</div>
|
|
|