Yii2 framework backup
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.

31 lines
999 B

11 years ago
<?php
use yii\helpers\Html;
/* @var $this \yii\web\View */
/* @var $generators \yii\gii\Generator[] */
/* @var $activeGenerator \yii\gii\Generator */
/* @var $content string */
11 years ago
$generators = Yii::$app->controller->module->generators;
$activeGenerator = Yii::$app->controller->generator;
?>
<?php $this->beginContent('@yii/gii/views/layouts/main.php'); ?>
<div class="row">
<div class="col-md-3 col-sm-4">
<div class="list-group">
<?php
foreach ($generators as $id => $generator) {
$label = '<i class="glyphicon glyphicon-chevron-right"></i>' . Html::encode($generator->getName());
echo Html::a($label, ['default/view', 'id' => $id], [
'class' => $generator === $activeGenerator ? 'list-group-item active' : 'list-group-item',
]);
}
?>
</div>
</div>
<div class="col-md-9 col-sm-8">
<?= $content ?>
</div>
11 years ago
</div>
<?php $this->endContent(); ?>