* * For the full copyright and license information, please view the LICENSE.md * file that was distributed with this source code. */ use common\modules\user\models\User; use yii\bootstrap\Nav; use yii\web\View; /** * @var View $this * @var User $user * @var string $content */ $this->title = '修改用户'; $this->params['breadcrumbs'][] = ['label' => '用户列表', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
[ 'class' => 'nav nav-pills nav-stacked', ], 'items' => [ ['label' => ' '. Yii::t('app', 'Account details'), 'url' => ['/user/default/update', 'id' => $user->id], 'encode' => false], ['label' => ' '. Yii::t('user', 'Profile details'), 'url' => ['/user/default/update-profile', 'id' => $user->id], 'encode' => false], [ 'label' => ' ' . Yii::t('app', 'Assignments'), 'url' => ['/user/default/assignments', 'id' => $user->id], 'visible' => Yii::$app->getModule("rbac"), 'encode' => false ], ], ]) ?>
[ 'class' => 'nav nav-pills nav-stacked', ], 'items' => [ [ 'label' => ' '.Yii::t('user', 'Confirm'), 'url' => ['/user/default/confirm', 'id' => $user->id], 'visible' => !$user->isConfirmed, 'linkOptions' => [ 'class' => 'text-success', 'data-method' => 'post', 'data-confirm' => Yii::t('user', 'Are you sure you want to confirm this user?'), ], 'encode' => false ], [ 'label' => ' '.Yii::t('user', 'Block'), 'url' => ['/user/default/block', 'id' => $user->id], 'visible' => !$user->isBlocked, 'linkOptions' => [ 'class' => 'text-danger', 'data-method' => 'post', 'data-confirm' => Yii::t('user', 'Are you sure you want to block this user?'), ], 'encode' => false ], [ 'label' => ' '.Yii::t('user', 'Unblock'), 'url' => ['/user/default/block', 'id' => $user->id], 'visible' => $user->isBlocked, 'linkOptions' => [ 'class' => 'text-success', 'data-method' => 'post', 'data-confirm' => Yii::t('user', 'Are you sure you want to unblock this user?'), ], 'encode' => false ], [ 'label' =>' '. Yii::t('app', 'Delete'), 'url' => ['/user/default/delete', 'id' => $user->id], 'linkOptions' => [ 'class' => 'text-danger', 'data-method' => 'post', 'data-confirm' => Yii::t('user', 'Are you sure you want to delete this user?'), ], 'encode' => false ], ], ]) ?>