add-skills.php 1.08 KB
<?php
    /**
     * @var User $user
     */
use common\models\Option;
    use common\models\User;
    use common\widgets\FieldEditor;
    use yii\helpers\Html;
use yii\widgets\ActiveForm;
use \common\widgets\MultiLangForm;

    $this->title = 'Дополнительные навыки';
    $this->params['breadcrumbs'][] = $this->title;
?>
<h1><?=  $this->title ?></h1>
<?php
    $form = ActiveForm::begin();
?>
<?= FieldEditor::widget (
    [
        'template' => 'soft', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
    ]
); ?>
<?= FieldEditor::widget (
    [
        'template' => 'education', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
    ]
); ?>
<?= FieldEditor::widget (
    [
        'template' => 'development', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
    ]
); ?>
<?= FieldEditor::widget (
    [
        'template' => 'courses', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
    ]
); ?>
    <?= Html::submitButton('Обновить') ?>
<?php
    $form->end();
?>