60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the 2amigos/yii2-usuario project.
|
|
*
|
|
* (c) 2amigOS! <http://2amigos.us/>
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
use dosamigos\selectize\SelectizeDropDownList;
|
|
use yii\bootstrap\Alert;
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/** @var \yii\web\View $this */
|
|
/** @var string[] $availableItems */
|
|
/** @var Da\User\Model\Assignment $model */
|
|
|
|
|
|
?>
|
|
|
|
<?php if ($model->updated): ?>
|
|
|
|
<?= Alert::widget(
|
|
[
|
|
'options' => [
|
|
'class' => 'alert-success',
|
|
],
|
|
'body' => Yii::t('usuario', 'Assignments have been updated'),
|
|
]
|
|
) ?>
|
|
|
|
<?php endif ?>
|
|
|
|
<?php $form = ActiveForm::begin(
|
|
[
|
|
'enableClientValidation' => false,
|
|
'enableAjaxValidation' => false,
|
|
]
|
|
) ?>
|
|
|
|
<?= Html::activeHiddenInput($model, 'user_id') ?>
|
|
|
|
<?= $form->field($model, 'items')->widget(
|
|
SelectizeDropDownList::class,
|
|
[
|
|
'items' => $availableItems,
|
|
'options' => [
|
|
'id' => 'children',
|
|
'multiple' => true,
|
|
],
|
|
]
|
|
) ?>
|
|
|
|
<?= Html::submitButton(Yii::t('usuario', 'Update assignments'), ['class' => 'btn btn-success btn-block']) ?>
|
|
|
|
<?php ActiveForm::end() ?>
|