Blame view

backend/views/settings/_mail_tab.php 553 Bytes
a0e8d4e0   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
      
      use common\models\Mail;
      use yii\bootstrap\ActiveForm;
      use yii\web\View;
      
      /**
       * @var View       $this
       * @var Mail       $mail
       * @var ActiveForm $form
       */
      
      echo $form->field($mail, 'host')
d68614ad   Eugeny Galkovskiy   translates 1
14
15
                ->textInput()
                ->label(\Yii::t('app', 'Host'));
a0e8d4e0   Alexey Boroda   first commit
16
17
      
      echo $form->field($mail, 'user')
d68614ad   Eugeny Galkovskiy   translates 1
18
19
                ->textInput()
                ->label(\Yii::t('app', 'User'));
a0e8d4e0   Alexey Boroda   first commit
20
21
      
      echo $form->field($mail, 'pass')
d68614ad   Eugeny Galkovskiy   translates 1
22
23
                ->textInput()
                ->label(\Yii::t('app', 'Pass'));