%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/yiisoft/yii2-gii/src/views/layouts/ |
Upload File : |
<?php
use yii\helpers\Html;
/* @var $this \yii\web\View */
/* @var $generators \yii\gii\Generator[] */
/* @var $activeGenerator \yii\gii\Generator */
/* @var $content string */
$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
$classes = ['list-group-item', 'd-flex', 'justify-content-between', 'align-items-center'];
foreach ($generators as $id => $generator) {
$label = Html::tag('span', Html::encode($generator->getName())) . '<span class="icon"></span>';
echo Html::a($label, ['default/view', 'id' => $id], [
'class' => $generator === $activeGenerator ? array_merge($classes, ['active']) : $classes,
]);
}
?>
</div>
</div>
<div class="col-md-9 col-sm-8">
<?= $content ?>
</div>
</div>
<?php $this->endContent(); ?>