| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?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\user\models\UserSearch;
- use yii\data\ActiveDataProvider;
- use yii\grid\GridView;
- use yii\helpers\Html;
- use yii\jui\DatePicker;
- use yii\web\View;
- use yii\widgets\Pjax;
- /**
- * @var View $this
- * @var ActiveDataProvider $dataProvider
- * @var UserSearch $searchModel
- */
- $this->title = Yii::t('user', 'Manage users');
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?= $this->render('/_alert', [
- 'module' => Yii::$app->getModule('user'),
- ]) ?>
- <?= $this->render('/admin/_menu') ?>
- <?php Pjax::begin() ?>
- <?= GridView::widget([
- 'dataProvider' => $dataProvider,
- 'filterModel' => $searchModel,
- 'layout' => "{items}\n{pager}",
- 'columns' => [
- // 'username',
- 'email:email',
- 'fio',
- // 'role',
- [
- 'attribute' => 'role_user',
- 'value' => function ($model) {
- switch ($model->role) {
- case 1:
- return 'Організатор';
- case 2:
- return 'Учасник';
- default:
- return 'Неизвестно';
- }
- },
- 'filter' => [
- 1 => 'Організатор',
- 2 => 'Учасник',
- ],
- ],
- 'at_org',
- [
- 'attribute' => 'registration_ip',
- 'value' => function ($model) {
- return $model->registration_ip == null
- ? '<span class="not-set">' . Yii::t('user', '(not set)') . '</span>'
- : $model->registration_ip;
- },
- '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);
- }
- },
- // 'filter' => DatePicker::widget([
- // 'model' => $searchModel,
- // 'attribute' => 'created_at',
- // 'dateFormat' => 'php:Y-m-d',
- // 'options' => [
- // 'class' => 'form-control',
- // ],
- // ]),
- ],
- [
- 'header' => Yii::t('user', 'Confirmation'),
- 'value' => function ($model) {
- if ($model->isConfirmed) {
- return '<div class="text-center"><span class="text-success">' . Yii::t('user', 'Confirmed') . '</span></div>';
- } 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('app', 'Send Activation ID'),
- 'value' => function ($model)
- {
- return Html::a(Yii::t('app', 'Send ID'), ['send', 'id' => $model->id], [
- 'class' => 'btn btn-xs btn-warning btn-block',
- 'data-method' => 'post',
- 'data-confirm' => Yii::t('app', 'Are you sure you send activation?'),
- ]);
- },
- 'format' => 'raw',
- ],
- [
- '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' => '{update} {delete}',
- ],
- ],
- ]); ?>
- <?php Pjax::end() ?>
|