d8c1a2e0
Yarik
Big commit artbox
|
1
|
<?php
|
2f69a481
Yarik
i18n config fix
|
2
3
4
5
6
7
8
9
|
use yii\helpers\Html;
/**
* @var yii\web\View $this
* @var common\models\Slider $model
*/
$this->title = Yii::t('app', 'Update {modelClass}: ', [
|
36c8e1fc
Eugeny Galkovskiy
MESSAGES !!!! EVGEN!
|
10
|
'modelClass' => Yii::t('app', 'Slider'),
|
2f69a481
Yarik
i18n config fix
|
11
12
13
14
15
16
|
]) . $model->title;
$this->params[ 'breadcrumbs' ][] = [
'label' => Yii::t('app', 'Sliders'),
'url' => [ 'index' ],
];
$this->params[ 'breadcrumbs' ][] = Yii::t('app', 'Update');
|
d8c1a2e0
Yarik
Big commit artbox
|
17
18
|
?>
<div class="slider-update">
|
2f69a481
Yarik
i18n config fix
|
19
|
|
d8c1a2e0
Yarik
Big commit artbox
|
20
|
<h1><?= Html::encode($this->title) ?></h1>
|
2f69a481
Yarik
i18n config fix
|
21
|
|
d8c1a2e0
Yarik
Big commit artbox
|
22
23
24
25
26
|
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>
|