%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 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/egp/vendor/yiisoft/yii2-gii/src/views/default/ |
Upload File : |
<?php use yii\helpers\Html; /* @var $this \yii\web\View */ /* @var $generators \yii\gii\Generator[] */ /* @var $content string */ $generators = Yii::$app->controller->module->generators; $this->title = 'Welcome to Gii'; ?> <div class="default-index"> <h1 class="border-bottom pb-3 mb-3">Welcome to Gii <small class="text-muted">a magical tool that can write code for you</small></h1> <p class="lead mb-5">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><?= Html::encode($generator->getName()) ?></h3> <p><?= $generator->getDescription() ?></p> <p><?= Html::a('Start »', ['default/view', 'id' => $id], ['class' => ['btn', 'btn-outline-secondary']]) ?></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>