codes.php 1009 Bytes
<?php
    /**
     * @var View     $this
     * @var Settings $model
     */
    
    use common\models\Settings;
    use yii\bootstrap\ActiveForm;
    use yii\bootstrap\Html;
    use yii\web\View;
    use yiister\gentelella\widgets\Panel;
    
    $this->title = Yii::t('core', 'Codes');
    
    $this->params[ 'breadcrumbs' ][] = $this->title;
?>

<?php $panel = Panel::begin(
    [
        'header' => $this->title,
    ]
); ?>

<div class="settings-form">
    
    <?php
        $form = ActiveForm::begin();
        
        echo $form->field($model, 'ga_code')
                  ->textInput();
        
        echo $form->field($model, 'ya_code')
                  ->textInput();
        
        echo $form->field($model, 'tag_manager')
                  ->textInput();
        
        echo Html::submitButton(
            \Yii::t('core', 'Save'),
            [
                'class' => 'btn btn-primary',
            ]
        );
        ActiveForm::end();
    ?>

</div>

<?php $panel::end(); ?>