init
This commit is contained in:
37
vendor/yiisoft/yii2-debug/views/default/panels/mail/_item.php
vendored
Normal file
37
vendor/yiisoft/yii2-debug/views/default/panels/mail/_item.php
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/* @var $model array */
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\DetailView;
|
||||
|
||||
echo DetailView::widget([
|
||||
'model' => $model,
|
||||
'attributes' => [
|
||||
'headers',
|
||||
'from',
|
||||
'to',
|
||||
'charset',
|
||||
[
|
||||
'attribute' => 'time',
|
||||
'format' => 'datetime',
|
||||
],
|
||||
'subject',
|
||||
[
|
||||
'attribute' => 'body',
|
||||
'label' => 'Text body',
|
||||
],
|
||||
[
|
||||
'attribute' => 'isSuccessful',
|
||||
'label' => 'Successfully sent',
|
||||
'value' => $model['isSuccessful'] ? 'Yes' : 'No'
|
||||
],
|
||||
'reply',
|
||||
'bcc',
|
||||
'cc',
|
||||
[
|
||||
'attribute' => 'file',
|
||||
'format' => 'html',
|
||||
'value' => Html::a('Download eml', ['download-mail', 'file' => $model['file']]),
|
||||
],
|
||||
],
|
||||
]);
|
||||
59
vendor/yiisoft/yii2-debug/views/default/panels/mail/detail.php
vendored
Normal file
59
vendor/yiisoft/yii2-debug/views/default/panels/mail/detail.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/* @var $panel yii\debug\panels\MailPanel */
|
||||
/* @var $searchModel yii\debug\models\search\Mail */
|
||||
/* @var $dataProvider yii\data\ArrayDataProvider */
|
||||
|
||||
use \yii\widgets\ListView;
|
||||
use yii\widgets\ActiveForm;
|
||||
use yii\helpers\Html;
|
||||
|
||||
$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">
|
||||
<div class="col-lg-2">
|
||||
<?= Html::button('Form filtering', ['class' => 'btn btn-default', 'onclick' => 'jQuery("#email-form").toggle();']) ?>
|
||||
</div>
|
||||
<div class="row col-lg-10">
|
||||
<?= $listView->renderSorter() ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="email-form" style="display: none;">
|
||||
<?php $form = ActiveForm::begin([
|
||||
'method' => 'get',
|
||||
'action' => ['default/view', 'tag' => Yii::$app->request->get('tag'), 'panel' => 'mail'],
|
||||
]); ?>
|
||||
<div class="row">
|
||||
<?= $form->field($searchModel, 'from', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<?= $form->field($searchModel, 'to', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<?= $form->field($searchModel, 'reply', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<?= $form->field($searchModel, 'cc', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<?= $form->field($searchModel, 'bcc', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<?= $form->field($searchModel, 'charset', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<?= $form->field($searchModel, 'subject', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<?= $form->field($searchModel, 'body', ['options' => ['class' => 'col-lg-6']])->textInput() ?>
|
||||
|
||||
<div class="form-group col-lg-12">
|
||||
<?= Html::submitButton('Filter', ['class' => 'btn btn-success']) ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php ActiveForm::end(); ?>
|
||||
</div>
|
||||
|
||||
<?= $listView->run() ?>
|
||||
8
vendor/yiisoft/yii2-debug/views/default/panels/mail/summary.php
vendored
Normal file
8
vendor/yiisoft/yii2-debug/views/default/panels/mail/summary.php
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/* @var $panel yii\debug\panels\MailPanel */
|
||||
/* @var $mailCount integer */
|
||||
if ($mailCount): ?>
|
||||
<div class="yii-debug-toolbar__block">
|
||||
<a href="<?= $panel->getUrl() ?>">Mail <span class="yii-debug-toolbar__label"><?= $mailCount ?></span></a>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
Reference in New Issue
Block a user