* * For the full copyright and license information, please view the LICENSE.md * file that was distributed with this source code. */ use yii\grid\GridView; use yii\helpers\Html; use yii\helpers\Url; use yii\web\View; use yii\widgets\Pjax; use dektrium\user\models\Profile; use dektrium\user\models\User; /** * @var \yii\web\View $this * @var \yii\data\ActiveDataProvider $dataProvider * @var \dektrium\user\models\UserSearch $searchModel */ $this->title = Yii::t('user', 'Manage users'); $this->params['breadcrumbs'][] = $this->title; ?> render('/_alert', ['module' => Yii::$app->getModule('user')]) ?> render('/admin/_menu') ?> $dataProvider, 'filterModel' => $searchModel, // 'tableOptions' => ['class' => 'table table-striped table-bordered'], 'layout' => "{items}\n{pager}", 'columns' => [ [ 'attribute' => 'id', 'headerOptions' => ['style' => 'width:90px;'], # 90px is sufficient for 5-digit user ids ], [ 'attribute' => 'Фото', 'value' => function ($model) { if( file_exists(Yii::getAlias('@webroot').'/images/users/'.$model->id.'_sm.jpg') ){ $s = Html::img('/images/users/'.$model->id.'_sm.jpg',['class' => "direct-chat-img"]); }else{ $s = ''; } return $s; }, 'format' => 'html', ], 'username', [ 'attribute' => 'Name', 'value' => function ($model) { $s=''; //Yii::$app->profile->get($model->id); $profile = Profile::findOne($model->id); return $profile->name; }, 'format' => 'html', ], 'email:email', [ 'attribute' => 'registration_ip', 'value' => function ($model) { return $model->registration_ip == null ? '' . Yii::t('user', '(not set)') . '' : $model->registration_ip; }, 'format' => 'html', ], [ 'attribute' => 'Роли', 'value' => function ($model) { $s=''; foreach(Yii::$app->authManager->getRolesByUser($model->id) as $role=>$set){ $s .= $set->name.' '; } return $s; }, 'format' => 'html', ], [ 'attribute' => 'created_at', 'value' => function ($model) { if (extension_loaded('intl')) { return Yii::t('user', '{0, date, MMMM dd, YYYY HH:mm}', [$model->created_at]); } else { return date('Y-m-d G:i:s', $model->created_at); } }, ], [ 'attribute' => 'last_login_at', 'value' => function ($model) { if (!$model->last_login_at || $model->last_login_at == 0) { return Yii::t('user', 'Never'); } else if (extension_loaded('intl')) { return Yii::t('user', '{0, date, MMMM dd, YYYY HH:mm}', [$model->last_login_at]); } else { return date('Y-m-d G:i:s', $model->last_login_at); } }, ], [ 'header' => Yii::t('user', 'Confirmation'), 'value' => function ($model) { if ($model->isConfirmed) { return '
' . Yii::t('user', 'Confirmed') . '
'; } else { return Html::a(Yii::t('user', 'Confirm'), ['confirm', 'id' => $model->id], [ 'class' => 'btn btn-xs btn-success btn-block', 'data-method' => 'post', 'data-confirm' => Yii::t('user', 'Are you sure you want to confirm this user?'), ]); } }, 'format' => 'raw', 'visible' => Yii::$app->getModule('user')->enableConfirmation, ], [ 'header' => Yii::t('user', 'Block status'), 'value' => function ($model) { if ($model->isBlocked) { return Html::a(Yii::t('user', 'Unblock'), ['block', 'id' => $model->id], [ 'class' => 'btn btn-xs btn-success btn-block', 'data-method' => 'post', 'data-confirm' => Yii::t('user', 'Are you sure you want to unblock this user?'), ]); } else { return Html::a(Yii::t('user', 'Block'), ['block', 'id' => $model->id], [ 'class' => 'btn btn-xs btn-danger btn-block', 'data-method' => 'post', 'data-confirm' => Yii::t('user', 'Are you sure you want to block this user?'), ]); } }, 'format' => 'raw', ], [ 'class' => 'yii\grid\ActionColumn', 'template' => '{switch} {resend_password} {update} {avatar} {delete}', 'buttons' => [ 'resend_password' => function ($url, $model, $key) { if (\Yii::$app->user->identity->isAdmin && !$model->isAdmin) { return ' '; } }, 'switch' => function ($url, $model) { if(\Yii::$app->user->identity->isAdmin && $model->id != Yii::$app->user->id && Yii::$app->getModule('user')->enableImpersonateUser) { return Html::a('', ['/user/admin/switch', 'id' => $model->id], [ 'title' => Yii::t('user', 'Become this user'), 'data-confirm' => Yii::t('user', 'Are you sure you want to switch to this user for the rest of this Session?'), 'data-method' => 'POST', ]); } }, 'avatar' => function ($url, $model) { if(\Yii::$app->user->identity->isAdmin && Yii::$app->getModule('user')->enableImpersonateUser) { return Html::a('', ['/manager/userex', 'id' => $model->id], [ 'title' => Yii::t('user', 'Avatar this user') ]); } } ] ], ], ]); ?>