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.
33 lines
1.0 KiB
33 lines
1.0 KiB
<?php |
|
use yii\helpers\Html; |
|
|
|
/** |
|
* @var $this \yii\base\View |
|
* @var $content string |
|
* @var yii\gii\Generator[] $generators |
|
* @var yii\gii\Generator $activeGenerator |
|
*/ |
|
$generators = Yii::$app->controller->module->generators; |
|
$activeGenerator = Yii::$app->controller->generator; |
|
$this->title = 'Welcome to Gii'; |
|
?> |
|
<div class="default-index"> |
|
<div class="page-header"> |
|
<h1>Welcome to Gii <small>a magic tool that can write code for you</small></h1> |
|
</div> |
|
|
|
<p class="lead">Start the fun with the following code generators:</p> |
|
|
|
<div class="row"> |
|
<?php foreach ($generators as $id => $generator): ?> |
|
<div class="generator col-lg-4"> |
|
<h3><?php echo Html::encode($generator->getName()); ?></h3> |
|
<p><?php echo $generator->getDescription(); ?></p> |
|
<p><?php echo Html::a('Start »', array('default/view', 'id' => $id), array('class' => 'btn btn-default')); ?></p> |
|
</div> |
|
<?php endforeach; ?> |
|
</div> |
|
|
|
<p><a class="btn btn-success" href="http://www.yiiframework.com/extensions/?tag=gii">Get More Generators</a></p> |
|
|
|
</div>
|
|
|