_assignments.php 509 B

1234567891011121314151617181920212223
  1. <?php
  2. use common\modules\rbac\widgets\Assignments;
  3. /**
  4. * @var yii\web\View $this
  5. * @var common\modules\user\models\User $user
  6. */
  7. ?>
  8. <?php $this->beginContent(__DIR__ . '/update.php', ['user' => $user]) ?>
  9. <?= yii\bootstrap\Alert::widget([
  10. 'options' => [
  11. 'class' => 'alert-info',
  12. ],
  13. 'body' => Yii::t('app', 'You can assign multiple roles or permissions to user by using the form below'),
  14. ]) ?>
  15. <?= Assignments::widget(['userId' => $user->id]) ?>
  16. <?php $this->endContent() ?>