%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/11585/cwd/html/egp/vendor/yiisoft/yii2-debug/src/views/default/panels/mail/ |
Upload File : |
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\widgets\ListView; /* @var $panel yii\debug\panels\MailPanel */ /* @var $searchModel yii\debug\models\search\Mail */ /* @var $dataProvider yii\data\ArrayDataProvider */ $listView = new ListView([ 'dataProvider' => $dataProvider, 'itemView' => '_item', 'layout' => "{summary}\n{items}\n{pager}\n", ]); $listView->sorter = ['options' => ['class' => 'mail-sorter']]; ?> <h1>Email messages</h1> <div class="row mb-2"> <div class="col-3 col-lg-2"> <?= Html::button('Form filtering', [ 'class' => ['btn', 'btn-outline-secondary'], 'type' => 'button', 'data' => [ 'toggle' => 'collapse', 'target' => '#email-form' ], 'aria-expanded' => 'false', 'aria-controls' => 'email-form' ]) ?> </div> <div class="col-9 col-lg-10"> <?= $listView->renderSorter() ?> </div> </div> <div id="email-form" class="collapse"> <?php $form = ActiveForm::begin([ 'method' => 'get', 'action' => ['default/view', 'tag' => Yii::$app->request->get('tag'), 'panel' => 'mail'], ]); ?> <div class="form-row"> <?= $form->field($searchModel, 'from', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <?= $form->field($searchModel, 'to', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <?= $form->field($searchModel, 'reply', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <?= $form->field($searchModel, 'cc', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <?= $form->field($searchModel, 'bcc', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <?= $form->field($searchModel, 'charset', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <?= $form->field($searchModel, 'subject', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <?= $form->field($searchModel, 'body', ['options' => ['class' => ['form-group', 'col-lg-6']]])->textInput() ?> <div class="form-group col-12"> <?= Html::submitButton('Filter', ['class' => 'btn btn-success']) ?> </div> </div> <?php ActiveForm::end(); ?> </div> <?= $listView->run() ?>