_blog_form.php
962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* @var Blog $blog
*/
use common\models\Blog;
use common\widgets\ImageUploader;
use mihaildev\ckeditor\CKEditor;
use yii\helpers\Html;
use yii\widgets\ActiveForm;
$this->title = 'Мой профиль';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<h1><?= $this->title ?></h1>
<?php
$form = ActiveForm::begin();
?>
<?= $form->field($blog, 'date_add')
->textInput([ 'disabled' => 'disabled' ]) ?>
<?= $form->field($blog, 'name')
->textInput() ?>
<?= $form->field($blog, 'link')
->textInput() ?>
<?= $form->field($blog, 'description')->widget(CKEditor::className()) ?>
<?= ImageUploader::widget([
'model'=> $blog,
'field'=>'cover',
'width'=>100,
'height'=>100,
'multi'=>false,
'gallery' =>$blog->cover,
'name' => 'Загрузить главное фото'
]);
?>
<?= Html::submitButton('Добавить') ?>
<?php
$form->end();
?>