added views and Authclients
This commit is contained in:
32
lib/User/resources/views/admin/_assignments.php
Normal file
32
lib/User/resources/views/admin/_assignments.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Dektrium project
|
||||
*
|
||||
* (c) Dektrium project <http://github.com/dektrium>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE.md
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
use dektrium\rbac\widgets\Assignments;
|
||||
|
||||
/**
|
||||
* @var yii\web\View $this
|
||||
* @var dektrium\user\models\User $user
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<?php $this->beginContent('@dektrium/user/views/admin/update.php', ['user' => $user]) ?>
|
||||
|
||||
<?= yii\bootstrap\Alert::widget([
|
||||
'options' => [
|
||||
'class' => 'alert-info alert-dismissible',
|
||||
],
|
||||
'body' => Yii::t('user', 'You can assign multiple roles or permissions to user by using the form below'),
|
||||
]) ?>
|
||||
|
||||
<?= Assignments::widget(['userId' => $user->id]) ?>
|
||||
|
||||
<?php $this->endContent() ?>
|
||||
Reference in New Issue
Block a user