* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ use yii\grid\GridView; use yii\helpers\Html; use yii\web\View; use yii\widgets\Pjax; /** * @var $this yii\web\View * @var $dataProvider yii\data\ActiveDataProvider * @var $searchModel Da\User\Search\UserSearch * @var $module Da\User\Module */ $this->title = Yii::t('usuario', 'Manage users'); $this->params['breadcrumbs'][] = $this->title; $module = Yii::$app->getModule('user'); ?> beginContent('@Da/User/resources/views/shared/admin_layout.php') ?> $dataProvider, 'filterModel' => $searchModel, 'layout' => "{items}\n{pager}", 'columns' => [ 'username', 'email:email', [ 'attribute' => 'registration_ip', 'value' => function ($model) { return $model->registration_ip == null ? '' . Yii::t('usuario', '(not set)') . '' : $model->registration_ip; }, 'format' => 'html', ], [ 'attribute' => 'created_at', 'value' => function ($model) { if (extension_loaded('intl')) { return Yii::t('usuario', '{0, date, MMMM dd, YYYY HH:mm}', [$model->created_at]); } 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('usuario', 'Never'); } else if (extension_loaded('intl')) { return Yii::t('usuario', '{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('usuario', 'Confirmation'), 'value' => function ($model) { if ($model->isConfirmed) { return '
' . Yii::t('usuario', 'Confirmed') . '
'; } return Html::a( Yii::t('usuario', 'Confirm'), ['confirm', 'id' => $model->id], [ 'class' => 'btn btn-xs btn-success btn-block', 'data-method' => 'post', 'data-confirm' => Yii::t('usuario', 'Are you sure you want to confirm this user?'), ] ); }, 'format' => 'raw', 'visible' => Yii::$app->getModule('user')->enableEmailConfirmation, ], [ 'header' => Yii::t('usuario', 'Block status'), 'value' => function ($model) { if ($model->isBlocked) { return Html::a( Yii::t('usuario', 'Unblock'), ['block', 'id' => $model->id], [ 'class' => 'btn btn-xs btn-success btn-block', 'data-method' => 'post', 'data-confirm' => Yii::t('usuario', 'Are you sure you want to unblock this user?'), ] ); } return Html::a( Yii::t('usuario', 'Block'), ['block', 'id' => $model->id], [ 'class' => 'btn btn-xs btn-danger btn-block', 'data-method' => 'post', 'data-confirm' => Yii::t('usuario', 'Are you sure you want to block this user?'), ] ); }, 'format' => 'raw', ], [ 'class' => 'yii\grid\ActionColumn', 'template' => '{switch} {update} {delete}', 'buttons' => [ 'switch' => function ($url, $model) use ($module) { if ($model->id != Yii::$app->user->id && $module->enableSwitchIdentities) { return Html::a( '', ['/user/admin/switch-identity', 'id' => $model->id], [ 'title' => Yii::t('usuario', 'Impersonate this user'), 'data-confirm' => Yii::t( 'usuario', 'Are you sure you want to switch to this user for the rest of this Session?' ), 'data-method' => 'POST', ] ); } return null; } ] ], ], ] ); ?> endContent() ?>