gallery-video.php
579 Bytes
<?php
/**
* @var Gallery $gallery
* @var User $user
*/
use common\models\Gallery;
use common\models\User;
use common\widgets\FieldEditor;
use yii\helpers\Html;
use yii\widgets\ActiveForm;
$this->title = 'Мой профиль';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<h1><?= $this->title ?></h1>
<?php
$form = ActiveForm::begin();
?>
<?= FieldEditor::widget (
[
'template' => 'youtube', 'item_id' => $user->id, 'model' => 'common\models\Gallery', 'language' => 'ru',
]
); ?>
<?= Html::submitButton('Добавить') ?>
<?php
$form->end();
?>