_gallery_form.php
1.05 KB
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
47
48
49
50
51
52
<?php
/**
* @var Gallery $gallery
* @var User $user
*/
use common\models\Gallery;
use common\models\User;
use common\widgets\ImageUploader;
use yii\helpers\Html;
use yii\widgets\ActiveForm;
$this->title = 'Мой профиль';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<h1><?= $this->title ?></h1>
<?php
$form = ActiveForm::begin();
?>
<?= $gallery->date_add ?>
<?= $form->field($gallery, 'name')
->textInput() ?>
<?= ImageUploader::widget([
'model' => $gallery,
'field' => 'cover',
'width' => 210,
'height' => 150,
'multi' => false,
'gallery' => $gallery->cover,
'name' => 'Загрузить главное фото',
]); ?>
<?= ImageUploader::widget([
'model' => $gallery,
'field' => 'photo',
'width' => 148,
'height' => 104,
'multi' => true,
'gallery' => $gallery->photo,
'name' => 'Загрузить фото галереи',
]); ?>
<?= Html::submitButton('Добавить') ?>
<?php
$form->end();
?>