9af79e71
Yarik
Sitemap and slugb...
|
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
use common\models\Settings;
use yii\bootstrap\ActiveForm;
use yii\web\View;
/**
* @var View $this
* @var Settings $model
* @var ActiveForm $form
*/
echo $form->field($model, 'name')
->textInput();
|
8b3dc47b
Yarik
XPanel removed
|
13
14
15
16
17
18
19
20
|
echo $form->field($model, 'logo')
->widget(
\noam148\imagemanager\components\ImageManagerInputWidget::className(),
[
'showPreview' => true,
'showDeletePickedImageConfirm' => false,
]
);
|