Merge pull request #58 from apuc/achiemevent-feature
Achiemevent feature
This commit is contained in:
commit
3737e741b9
@ -56,6 +56,9 @@ return [
|
|||||||
'interview' => [
|
'interview' => [
|
||||||
'class' => 'backend\modules\interview\Interview',
|
'class' => 'backend\modules\interview\Interview',
|
||||||
],
|
],
|
||||||
|
'achievements' => [
|
||||||
|
'class' => 'backend\modules\achievements\Achievements',
|
||||||
|
],
|
||||||
],
|
],
|
||||||
'components' => [
|
'components' => [
|
||||||
'request' => [
|
'request' => [
|
||||||
|
24
backend/modules/achievements/Achievements.php
Executable file
24
backend/modules/achievements/Achievements.php
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace backend\modules\achievements;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* achievement module definition class
|
||||||
|
*/
|
||||||
|
class Achievements extends \yii\base\Module
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public $controllerNamespace = 'backend\modules\achievements\controllers';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
parent::init();
|
||||||
|
|
||||||
|
// custom initialization code goes here
|
||||||
|
}
|
||||||
|
}
|
151
backend/modules/achievements/controllers/AchievementsController.php
Executable file
151
backend/modules/achievements/controllers/AchievementsController.php
Executable file
@ -0,0 +1,151 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace backend\modules\achievements\controllers;
|
||||||
|
|
||||||
|
use backend\modules\achievements\models\AchievementSearch;
|
||||||
|
use common\models\Status;
|
||||||
|
use Yii;
|
||||||
|
use backend\modules\achievements\models\Achievement;
|
||||||
|
use common\models\FieldsValueNew;
|
||||||
|
use yii\data\ActiveDataProvider;
|
||||||
|
use yii\filters\AccessControl;
|
||||||
|
use yii\filters\VerbFilter;
|
||||||
|
use yii\web\Controller;
|
||||||
|
use yii\web\NotFoundHttpException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default controller for the `achievements` module
|
||||||
|
*/
|
||||||
|
class AchievementsController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function behaviors()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'verbs' => [
|
||||||
|
'class' => VerbFilter::className(),
|
||||||
|
'actions' => [
|
||||||
|
'delete' => ['POST'],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'access' => [
|
||||||
|
'class' => AccessControl::className(),
|
||||||
|
'rules' => [
|
||||||
|
[
|
||||||
|
'allow' => true,
|
||||||
|
'roles' => ['admin'],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders the index view for the module
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function actionIndex()
|
||||||
|
{
|
||||||
|
$searchModel = new AchievementSearch();
|
||||||
|
|
||||||
|
$dataProvider = $searchModel->search();
|
||||||
|
return $this->render('index', [
|
||||||
|
'searchModel' => $searchModel,
|
||||||
|
'dataProvider' => $dataProvider
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new note model.
|
||||||
|
* If creation is successful, the browser will be redirected to the 'view' page.
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function actionCreate()
|
||||||
|
{
|
||||||
|
$model = new Achievement();
|
||||||
|
|
||||||
|
if ($model->load(\Yii::$app->request->post()) && $model->save()) {
|
||||||
|
return $this->redirect(['view', 'id' => $model->id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->render('create', [
|
||||||
|
'model' => $model
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Displays a single note model.
|
||||||
|
* @param integer $id
|
||||||
|
* @return mixed
|
||||||
|
* @throws NotFoundHttpException if the model cannot be found
|
||||||
|
*/
|
||||||
|
public function actionView($id)
|
||||||
|
{
|
||||||
|
$additionalDataProvider = new ActiveDataProvider([
|
||||||
|
'query' => FieldsValueNew::find()
|
||||||
|
->where(['item_id' => $id, 'item_type' => FieldsValueNew::TYPE_NOTE])
|
||||||
|
->orderBy('order'),
|
||||||
|
'pagination' => [
|
||||||
|
'pageSize' => 200,
|
||||||
|
],
|
||||||
|
]);
|
||||||
|
|
||||||
|
$changeDataProvider = new ActiveDataProvider([
|
||||||
|
'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]),
|
||||||
|
'pagination' => [
|
||||||
|
'pageSize' => 200,
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
||||||
|
return $this->render('view', [
|
||||||
|
'model' => Achievement::findOne($id),
|
||||||
|
'additionalDataProvider' => $additionalDataProvider,
|
||||||
|
'changeDataProvider' => $changeDataProvider,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function actionUpdate($id)
|
||||||
|
{
|
||||||
|
$model = $this->findModel($id);
|
||||||
|
|
||||||
|
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
||||||
|
return $this->redirect(['view', 'id' => $model->id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->render('update', [
|
||||||
|
'model' => $model,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deletes an existing Note model.
|
||||||
|
* If deletion is successful, the browser will be redirected to the 'index' page.
|
||||||
|
* @param integer $id
|
||||||
|
* @return mixed
|
||||||
|
* @throws NotFoundHttpException if the model cannot be found
|
||||||
|
*/
|
||||||
|
public function actionDelete($id)
|
||||||
|
{
|
||||||
|
$this->findModel($id)->delete();
|
||||||
|
|
||||||
|
return $this->redirect(['index']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the note model based on its primary key value.
|
||||||
|
* If the model is not found, a 404 HTTP exception will be thrown.
|
||||||
|
* @param integer $id
|
||||||
|
* @return Achievement the loaded model
|
||||||
|
* @throws NotFoundHttpException if the model cannot be found
|
||||||
|
*/
|
||||||
|
protected function findModel($id)
|
||||||
|
{
|
||||||
|
if (($model = Achievement::findOne($id)) !== null) {
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new NotFoundHttpException('The requested page does not exist.');
|
||||||
|
}
|
||||||
|
}
|
21
backend/modules/achievements/models/Achievement.php
Executable file
21
backend/modules/achievements/models/Achievement.php
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace backend\modules\achievements\models;
|
||||||
|
|
||||||
|
use Yii;
|
||||||
|
use common\models\FieldsValueNew;
|
||||||
|
|
||||||
|
class Achievement extends \common\models\Achievement
|
||||||
|
{
|
||||||
|
|
||||||
|
public $fields;
|
||||||
|
|
||||||
|
public function behaviors()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'log' => [
|
||||||
|
'class' => \common\behaviors\LogBehavior::class,
|
||||||
|
]
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
58
backend/modules/achievements/models/AchievementSearch.php
Executable file
58
backend/modules/achievements/models/AchievementSearch.php
Executable file
@ -0,0 +1,58 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace backend\modules\achievements\models;
|
||||||
|
|
||||||
|
use common\models\Achievement;
|
||||||
|
use Yii;
|
||||||
|
use yii\data\ActiveDataProvider;
|
||||||
|
|
||||||
|
class AchievementSearch extends Achievement
|
||||||
|
{
|
||||||
|
|
||||||
|
public function rules()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
[['id', 'status'], 'integer'],
|
||||||
|
[['name', 'description', 'slug', 'title','img'], 'safe'],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates data provider instance with search query applied
|
||||||
|
*
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return ActiveDataProvider
|
||||||
|
*/
|
||||||
|
public function search()
|
||||||
|
{
|
||||||
|
$params = Yii::$app->request->queryParams;
|
||||||
|
$query = Achievement::find();
|
||||||
|
// add conditions that should always apply here
|
||||||
|
|
||||||
|
$dataProvider = new ActiveDataProvider([
|
||||||
|
'query' => $query,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->load($params);
|
||||||
|
|
||||||
|
if (!$this->validate()) {
|
||||||
|
// uncomment the following line if you do not want to return any records when validation fails
|
||||||
|
// $query->where('0=1');
|
||||||
|
return $dataProvider;
|
||||||
|
}
|
||||||
|
|
||||||
|
// grid filtering conditions
|
||||||
|
$query->andFilterWhere([
|
||||||
|
'id' => $this->id,
|
||||||
|
'status' => $this->status
|
||||||
|
]);
|
||||||
|
|
||||||
|
$query->andFilterWhere(['like', 'slug', $this->slug])
|
||||||
|
->andFilterWhere(['like', 'description', $this->description])
|
||||||
|
->andFilterWhere(['like', 'title', $this->title]);
|
||||||
|
// $query->orderBy('created_at DESC');
|
||||||
|
|
||||||
|
return $dataProvider;
|
||||||
|
}
|
||||||
|
}
|
50
backend/modules/achievements/views/achievements/_form.php
Executable file
50
backend/modules/achievements/views/achievements/_form.php
Executable file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use backend\modules\settings\models\AdditionalFields;
|
||||||
|
use mihaildev\elfinder\InputFile;
|
||||||
|
use unclead\multipleinput\MultipleInput;
|
||||||
|
use yii\helpers\Html;
|
||||||
|
use yii\widgets\ActiveForm;
|
||||||
|
|
||||||
|
/* @var $this yii\web\View */
|
||||||
|
/* @var $model backend\modules\achievements\models\Achievement */
|
||||||
|
/* @var $form yii\widgets\ActiveForm */
|
||||||
|
/* @var $statuses array */
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="notes-form">
|
||||||
|
|
||||||
|
<?php $form = ActiveForm::begin(); ?>
|
||||||
|
|
||||||
|
<?= $form->field($model, 'title')->textInput(['maxlength' => true]) ?>
|
||||||
|
<?= $form->field($model, 'slug')->textInput(['maxlength' => true]) ?>
|
||||||
|
<?= $form->field($model, 'description')->textarea(['rows' => 6]) ?>
|
||||||
|
<?= $form->field($model, 'status')->dropDownList(\common\models\Achievement::getStatusLabel()) ?>
|
||||||
|
<div class="imgUpload form-group">
|
||||||
|
<div class="media__upload_img"><img src="<?= $model->img; ?>" width="100px"/></div>
|
||||||
|
<?php
|
||||||
|
echo InputFile::widget([
|
||||||
|
'language' => 'ru',
|
||||||
|
'controller' => 'elfinder',
|
||||||
|
// вставляем название контроллера, по умолчанию равен elfinder
|
||||||
|
'filter' => 'image',
|
||||||
|
// фильтр файлов, можно задать массив фильтров https://github.com/Studio-42/elFinder/wiki/Client-con..
|
||||||
|
'name' => 'Achievement[img]',
|
||||||
|
'id' => 'achievement-img',
|
||||||
|
'template' => '<label>Изображение</label><div class="input-group">{input}<span class="span-btn">{button}</span></div>',
|
||||||
|
'options' => ['class' => 'form-control itemImg', 'maxlength' => '255'],
|
||||||
|
'buttonOptions' => ['class' => 'btn btn-primary'],
|
||||||
|
'value' => $model->img,
|
||||||
|
'buttonName' => 'Выбрать изображение',
|
||||||
|
]);
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<?= Html::submitButton('Сохранить', ['class' => 'btn btn-success']) ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php ActiveForm::end(); ?>
|
||||||
|
|
||||||
|
</div>
|
19
backend/modules/achievements/views/achievements/create.php
Executable file
19
backend/modules/achievements/views/achievements/create.php
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use yii\helpers\Html;
|
||||||
|
|
||||||
|
|
||||||
|
/* @var $this yii\web\View */
|
||||||
|
/* @var $model backend\modules\achievements\models\Achievement */
|
||||||
|
|
||||||
|
$this->title = 'Создать достижение';
|
||||||
|
$this->params['breadcrumbs'][] = ['label' => 'Достижения', 'url' => ['index']];
|
||||||
|
$this->params['breadcrumbs'][] = $this->title;
|
||||||
|
?>
|
||||||
|
<div class="notes-create">
|
||||||
|
|
||||||
|
<?= $this->render('_form', [
|
||||||
|
'model' => $model,
|
||||||
|
]) ?>
|
||||||
|
|
||||||
|
</div>
|
49
backend/modules/achievements/views/achievements/index.php
Executable file
49
backend/modules/achievements/views/achievements/index.php
Executable file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use yii\helpers\Html;
|
||||||
|
use yii\grid\GridView;
|
||||||
|
|
||||||
|
/* @var $this yii\web\View */
|
||||||
|
/* @var $searchModel backend\modules\achievements\models\AchievementSearch */
|
||||||
|
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||||||
|
|
||||||
|
$this->title = 'Достижения';
|
||||||
|
$this->params['breadcrumbs'][] = $this->title;
|
||||||
|
?>
|
||||||
|
<div class="notes-index">
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<?= Html::a('Добавить', ['create'], ['class' => 'btn btn-success']) ?>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<?= GridView::widget([
|
||||||
|
'dataProvider' => $dataProvider,
|
||||||
|
'filterModel' => $searchModel,
|
||||||
|
'columns' => [
|
||||||
|
['class' => 'yii\grid\SerialColumn'],
|
||||||
|
// 'id',
|
||||||
|
'title',
|
||||||
|
'slug',
|
||||||
|
'description',
|
||||||
|
[
|
||||||
|
'attribute' => 'status',
|
||||||
|
'value' => function ($model) {
|
||||||
|
return \common\models\Achievement::getStatusLabel()[$model->status ?? 0];
|
||||||
|
},
|
||||||
|
'filter' => kartik\select2\Select2::widget([
|
||||||
|
'model' => $searchModel,
|
||||||
|
'attribute' => 'status',
|
||||||
|
'data' => \common\models\Achievement::getStatusLabel(),
|
||||||
|
'options' => ['placeholder' => 'Начните вводить...', 'class' => 'form-control'],
|
||||||
|
'pluginOptions' => [
|
||||||
|
'allowClear' => true
|
||||||
|
],
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
// 'created_at',
|
||||||
|
// 'updated_at',
|
||||||
|
|
||||||
|
['class' => 'yii\grid\ActionColumn'],
|
||||||
|
],
|
||||||
|
]); ?>
|
||||||
|
</div>
|
17
backend/modules/achievements/views/achievements/update.php
Executable file
17
backend/modules/achievements/views/achievements/update.php
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/* @var $this yii\web\View */
|
||||||
|
/* @var $model backend\modules\achievements\models\Achievement */
|
||||||
|
|
||||||
|
$this->title = 'Редактировать достижение: ' . $model->title;
|
||||||
|
$this->params['breadcrumbs'][] = ['label' => 'Заметки', 'url' => ['index']];
|
||||||
|
$this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
|
||||||
|
$this->params['breadcrumbs'][] = 'Редактировать';
|
||||||
|
?>
|
||||||
|
<div class="notes-update">
|
||||||
|
|
||||||
|
<?= $this->render('_form', [
|
||||||
|
'model' => $model,
|
||||||
|
]) ?>
|
||||||
|
|
||||||
|
</div>
|
60
backend/modules/achievements/views/achievements/view.php
Executable file
60
backend/modules/achievements/views/achievements/view.php
Executable file
@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use yii\grid\GridView;
|
||||||
|
use yii\helpers\Html;
|
||||||
|
use yii\widgets\DetailView;
|
||||||
|
|
||||||
|
/* @var $this yii\web\View */
|
||||||
|
/* @var $dataProviderF \yii\data\ActiveDataProvider */
|
||||||
|
/* @var $model backend\modules\achievements\models\Achievement */
|
||||||
|
|
||||||
|
$this->title = $model->title;
|
||||||
|
$this->params['breadcrumbs'][] = ['label' => 'Достижения', 'url' => ['index']];
|
||||||
|
$this->params['breadcrumbs'][] = $this->title;
|
||||||
|
?>
|
||||||
|
<div class="notes-view">
|
||||||
|
<p>
|
||||||
|
<?= Html::a('Список', ['index'], ['class' => 'btn btn-primary']) ?>
|
||||||
|
<?= Html::a('Редактировать', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
|
||||||
|
<?= Html::a('Удалить', ['delete', 'id' => $model->id], [
|
||||||
|
'class' => 'btn btn-danger',
|
||||||
|
'data' => [
|
||||||
|
'confirm' => 'Are you sure you want to delete this item?',
|
||||||
|
'method' => 'post',
|
||||||
|
],
|
||||||
|
]) ?>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<?= DetailView::widget([
|
||||||
|
'model' => $model,
|
||||||
|
'attributes' => [
|
||||||
|
'id',
|
||||||
|
'title',
|
||||||
|
'slug',
|
||||||
|
'description:ntext',
|
||||||
|
[
|
||||||
|
'attribute' => 'status',
|
||||||
|
'value' => \common\models\Achievement::getStatusLabel()[$model->status ?? 0],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'attribute' => 'img',
|
||||||
|
'format' => 'raw',
|
||||||
|
'value' => function ($model) {
|
||||||
|
return Html::tag('img', null, ['src' => $model->img, 'width' => '100px']);
|
||||||
|
}
|
||||||
|
],
|
||||||
|
],
|
||||||
|
]) ?>
|
||||||
|
|
||||||
|
<h2>История изменений</h2>
|
||||||
|
<?= GridView::widget([
|
||||||
|
'dataProvider' => $changeDataProvider,
|
||||||
|
'columns' => [
|
||||||
|
'label',
|
||||||
|
'old_value',
|
||||||
|
'new_value',
|
||||||
|
'created_at',
|
||||||
|
],
|
||||||
|
]); ?>
|
||||||
|
|
||||||
|
</div>
|
@ -3,6 +3,7 @@
|
|||||||
namespace backend\modules\card\controllers;
|
namespace backend\modules\card\controllers;
|
||||||
|
|
||||||
use common\classes\Debug;
|
use common\classes\Debug;
|
||||||
|
use common\models\AchievementUserCard;
|
||||||
use common\models\AdditionalFields;
|
use common\models\AdditionalFields;
|
||||||
use common\models\CardSkill;
|
use common\models\CardSkill;
|
||||||
use common\Models\ChangeHistory;
|
use common\Models\ChangeHistory;
|
||||||
@ -104,6 +105,12 @@ class UserCardController extends Controller
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
$skills = CardSkill::find()->where(['card_id' => $id])->with('skill')->all();
|
$skills = CardSkill::find()->where(['card_id' => $id])->with('skill')->all();
|
||||||
|
$achievements =
|
||||||
|
AchievementUserCard::find()->where(['user_card_id' => $id])
|
||||||
|
->innerJoinWith(['achievement' => function($query) {
|
||||||
|
$query->andWhere(['status' => \common\models\Achievement::STATUS_ACTIVE]);
|
||||||
|
}])
|
||||||
|
->all();
|
||||||
|
|
||||||
$id_current_user = $this->findModel($id)->id_user;
|
$id_current_user = $this->findModel($id)->id_user;
|
||||||
$changeDataProvider = new ActiveDataProvider([
|
$changeDataProvider = new ActiveDataProvider([
|
||||||
@ -117,6 +124,7 @@ class UserCardController extends Controller
|
|||||||
'model' => $this->findModel($id),
|
'model' => $this->findModel($id),
|
||||||
'modelFieldValue' => $dataProvider,
|
'modelFieldValue' => $dataProvider,
|
||||||
'skills' => $skills,
|
'skills' => $skills,
|
||||||
|
'achievements' => $achievements,
|
||||||
'userData' => User::findOne($id_current_user),
|
'userData' => User::findOne($id_current_user),
|
||||||
'changeDataProvider' => $changeDataProvider,
|
'changeDataProvider' => $changeDataProvider,
|
||||||
]);
|
]);
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
namespace backend\modules\card\models;
|
namespace backend\modules\card\models;
|
||||||
|
|
||||||
|
use backend\modules\achievements\models\Achievement;
|
||||||
use Common\Behaviors\LogBehavior;
|
use Common\Behaviors\LogBehavior;
|
||||||
|
use common\models\AchievementUserCard;
|
||||||
use Yii;
|
use Yii;
|
||||||
use backend\modules\settings\models\Skill;
|
use backend\modules\settings\models\Skill;
|
||||||
use common\classes\Debug;
|
use common\classes\Debug;
|
||||||
@ -16,6 +18,7 @@ class UserCard extends \common\models\UserCard
|
|||||||
{
|
{
|
||||||
public $fields;
|
public $fields;
|
||||||
public $skill;
|
public $skill;
|
||||||
|
public $achievements;
|
||||||
|
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
@ -63,6 +66,19 @@ class UserCard extends \common\models\UserCard
|
|||||||
if (!empty($skill)) {
|
if (!empty($skill)) {
|
||||||
$this->skill = $skill;
|
$this->skill = $skill;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$achievements = ArrayHelper::getColumn(AchievementUserCard::find()
|
||||||
|
->where(['user_card_id' => \Yii::$app->request->get('id')])
|
||||||
|
->innerJoinWith(['achievement' => function($query) {
|
||||||
|
$query->andWhere(['status' => \common\models\Achievement::STATUS_ACTIVE]);
|
||||||
|
}])
|
||||||
|
->all(),
|
||||||
|
'achievement_id'
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!empty($achievements)) {
|
||||||
|
$this->achievements = $achievements;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function behaviors()
|
public function behaviors()
|
||||||
@ -118,6 +134,19 @@ class UserCard extends \common\models\UserCard
|
|||||||
$skill->save();
|
$skill->save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(is_array($post['achievements'])){
|
||||||
|
AchievementUserCard::deleteAll(['user_card_id' => $this->id]);
|
||||||
|
|
||||||
|
foreach ($post['achievements'] as $item) {
|
||||||
|
$achCard = new AchievementUserCard();
|
||||||
|
$achCard->user_card_id = $this->id;
|
||||||
|
$achCard->achievement_id = $item;
|
||||||
|
|
||||||
|
$achCard->save();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
parent::afterSave($insert, $changedAttributes); // TODO: Change the autogenerated stub
|
parent::afterSave($insert, $changedAttributes); // TODO: Change the autogenerated stub
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
use asmoday74\ckeditor5\EditorClassic;
|
use asmoday74\ckeditor5\EditorClassic;
|
||||||
use common\classes\Debug;
|
use common\classes\Debug;
|
||||||
|
use common\models\Achievement;
|
||||||
use kartik\select2\Select2;
|
use kartik\select2\Select2;
|
||||||
use mihaildev\elfinder\InputFile;
|
use mihaildev\elfinder\InputFile;
|
||||||
use unclead\multipleinput\MultipleInput;
|
use unclead\multipleinput\MultipleInput;
|
||||||
@ -175,6 +176,19 @@ use yii\widgets\ActiveForm;
|
|||||||
'language' => 'ru',
|
'language' => 'ru',
|
||||||
]
|
]
|
||||||
]); ?>
|
]); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<?= $form->field($model, 'achievements')->widget(Select2::class,
|
||||||
|
[
|
||||||
|
'data' => \yii\helpers\ArrayHelper::map(Achievement::find()->where(['status' => Achievement::STATUS_ACTIVE])->all(),'id', 'title'),
|
||||||
|
'options' => ['placeholder' => '...','class' => 'form-control', 'multiple' => true],
|
||||||
|
'pluginOptions' => [
|
||||||
|
'allowClear' => true
|
||||||
|
],
|
||||||
|
]
|
||||||
|
); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
|
@ -8,7 +8,9 @@ use yii\widgets\DetailView;
|
|||||||
/* @var $model backend\modules\card\models\UserCard */
|
/* @var $model backend\modules\card\models\UserCard */
|
||||||
/* @var $userData common\models\User */
|
/* @var $userData common\models\User */
|
||||||
/* @var $skills \common\models\CardSkill */
|
/* @var $skills \common\models\CardSkill */
|
||||||
|
/* @var $achievements \common\models\AchievementUserCard */
|
||||||
/* @var $skill \common\models\Skill */
|
/* @var $skill \common\models\Skill */
|
||||||
|
/* @var $achievement \common\models\Achievement */
|
||||||
/* @var $modelFieldValue yii\data\ActiveDataProvider */
|
/* @var $modelFieldValue yii\data\ActiveDataProvider */
|
||||||
/* @var $changeDataProvider yii\data\ActiveDataProvider */
|
/* @var $changeDataProvider yii\data\ActiveDataProvider */
|
||||||
|
|
||||||
@ -91,11 +93,22 @@ $this->params['breadcrumbs'][] = $this->title;
|
|||||||
]) ?>
|
]) ?>
|
||||||
|
|
||||||
<h2>Навыки</h2>
|
<h2>Навыки</h2>
|
||||||
|
|
||||||
<?php foreach ($skills as $skill) : ?>
|
<?php foreach ($skills as $skill) : ?>
|
||||||
<span class="btn btn-default btn-sm"><?= $skill['skill']->name; ?></span>
|
<span class="btn btn-default btn-sm"><?= $skill['skill']->name; ?></span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
||||||
|
<h2>Достижения</h2>
|
||||||
|
<?php foreach ($achievements as $achievement) : ?>
|
||||||
|
<a target="_blank"
|
||||||
|
href="<? echo \yii\helpers\Url::to(['/achievements/achievements/view', 'id' => $achievement['achievement']->id]);?>"
|
||||||
|
class="btn btn-default btn-sm">
|
||||||
|
<?= Html::tag('img', null,
|
||||||
|
['src' => $achievement['achievement']->img, 'height' => '50px', 'width' => '50px']
|
||||||
|
) ?>
|
||||||
|
<?= $achievement['achievement']->title; ?>
|
||||||
|
</a>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
|
||||||
<h2>Дополнительные сведения</h2>
|
<h2>Дополнительные сведения</h2>
|
||||||
|
|
||||||
<?= GridView::widget([
|
<?= GridView::widget([
|
||||||
|
@ -48,6 +48,7 @@
|
|||||||
],
|
],
|
||||||
['label' => 'Баланс', 'icon' => 'dollar', 'url' => ['/balan ce/balance'], 'active' => \Yii::$app->controller->id == 'balance', 'visible' => Yii::$app->user->can('confidential_information')],
|
['label' => 'Баланс', 'icon' => 'dollar', 'url' => ['/balan ce/balance'], 'active' => \Yii::$app->controller->id == 'balance', 'visible' => Yii::$app->user->can('confidential_information')],
|
||||||
['label' => 'Отпуска', 'icon' => 'plane', 'url' => ['/holiday/holiday'], 'active' => \Yii::$app->controller->id == 'holiday', 'visible' => Yii::$app->user->can('confidential_information')],
|
['label' => 'Отпуска', 'icon' => 'plane', 'url' => ['/holiday/holiday'], 'active' => \Yii::$app->controller->id == 'holiday', 'visible' => Yii::$app->user->can('confidential_information')],
|
||||||
|
['label' => 'Достижения', 'icon' => 'trophy', 'url' => ['/achievements/achievements'], 'active' => \Yii::$app->controller->id == 'achievements', 'visible' => Yii::$app->user->can('confidential_information')],
|
||||||
['label' => 'Доступы', 'icon' => 'key', 'url' => ['/accesses/accesses'], 'active' => \Yii::$app->controller->id == 'accesses', 'visible' => Yii::$app->user->can('confidential_information')],
|
['label' => 'Доступы', 'icon' => 'key', 'url' => ['/accesses/accesses'], 'active' => \Yii::$app->controller->id == 'accesses', 'visible' => Yii::$app->user->can('confidential_information')],
|
||||||
['label' => 'Заметки', 'icon' => 'sticky-note', 'url' => ['/notes/notes'], 'active' => \Yii::$app->controller->id == 'notes', 'visible' => Yii::$app->user->can('confidential_information')],
|
['label' => 'Заметки', 'icon' => 'sticky-note', 'url' => ['/notes/notes'], 'active' => \Yii::$app->controller->id == 'notes', 'visible' => Yii::$app->user->can('confidential_information')],
|
||||||
['label' => 'Календарь ДР', 'icon' => 'calendar', 'url' => ['/calendar/calendar'], 'active' => \Yii::$app->controller->id == 'calendar', 'visible' => Yii::$app->user->can('confidential_information')],
|
['label' => 'Календарь ДР', 'icon' => 'calendar', 'url' => ['/calendar/calendar'], 'active' => \Yii::$app->controller->id == 'calendar', 'visible' => Yii::$app->user->can('confidential_information')],
|
||||||
|
65
common/models/Achievement.php
Normal file
65
common/models/Achievement.php
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace common\models;
|
||||||
|
|
||||||
|
use Yii;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the model class for table "achievement".
|
||||||
|
*
|
||||||
|
* @property int $id
|
||||||
|
* @property string $slug
|
||||||
|
* @property string $title
|
||||||
|
* @property string $img
|
||||||
|
* @property string $description
|
||||||
|
* @property integer $status
|
||||||
|
*/
|
||||||
|
class Achievement extends \yii\db\ActiveRecord
|
||||||
|
{
|
||||||
|
const STATUS_ACTIVE = 1;
|
||||||
|
const STATUS_DISABLE = 2;
|
||||||
|
|
||||||
|
public static function getStatusLabel():array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
self::STATUS_ACTIVE => 'Активна',
|
||||||
|
self::STATUS_DISABLE => 'Не активна'
|
||||||
|
];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public static function tableName()
|
||||||
|
{
|
||||||
|
return 'achievement';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function rules()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
[['title', 'slug'], 'required'],
|
||||||
|
[['status'], 'integer'],
|
||||||
|
[['slug', 'title'], 'string', 'max' => 255],
|
||||||
|
[['description', 'img'], 'string'],
|
||||||
|
[['status'], 'exist', 'skipOnError' => true, 'targetClass' => Status::class, 'targetAttribute' => ['status' => 'id']],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function attributeLabels()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'id' => 'ID',
|
||||||
|
'title' => 'Название',
|
||||||
|
'slug' => 'Slug',
|
||||||
|
'description' => 'Описание',
|
||||||
|
'status' => 'Статус',
|
||||||
|
'img' => 'Изображение',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
66
common/models/AchievementUserCard.php
Normal file
66
common/models/AchievementUserCard.php
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace common\models;
|
||||||
|
|
||||||
|
use Yii;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the model class for table "user_card_accesses".
|
||||||
|
*
|
||||||
|
* @property int $id
|
||||||
|
* @property int $user_card_id
|
||||||
|
* @property int $achievement_id
|
||||||
|
*
|
||||||
|
* @property Accesses $accesses
|
||||||
|
* @property UserCard $userCard
|
||||||
|
*/
|
||||||
|
class AchievementUserCard extends \yii\db\ActiveRecord
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public static function tableName()
|
||||||
|
{
|
||||||
|
return 'achievement_user_card';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function rules()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
[['user_card_id', 'achievement_id'], 'integer'],
|
||||||
|
[['achievement_id'], 'exist', 'skipOnError' => true, 'targetClass' => Achievement::className(), 'targetAttribute' => ['achievement_id' => 'id']],
|
||||||
|
[['user_card_id'], 'exist', 'skipOnError' => true, 'targetClass' => UserCard::className(), 'targetAttribute' => ['user_card_id' => 'id']],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function attributeLabels()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'id' => 'ID',
|
||||||
|
'achievement_id' => 'Achievement ID',
|
||||||
|
'user_card_id' => 'User Card ID',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return \yii\db\ActiveQuery
|
||||||
|
*/
|
||||||
|
public function getAchievement()
|
||||||
|
{
|
||||||
|
return $this->hasOne(Achievement::className(), ['id' => 'achievement_id']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return \yii\db\ActiveQuery
|
||||||
|
*/
|
||||||
|
public function getUserCard()
|
||||||
|
{
|
||||||
|
return $this->hasOne(UserCard::className(), ['id' => 'user_card_id']);
|
||||||
|
}
|
||||||
|
}
|
@ -38,6 +38,7 @@ use yii\helpers\ArrayHelper;
|
|||||||
* @property ProjectUser[] $projectUsers
|
* @property ProjectUser[] $projectUsers
|
||||||
* @property Position $position
|
* @property Position $position
|
||||||
* @property Status $status0
|
* @property Status $status0
|
||||||
|
* @property Achievement[] $achievements
|
||||||
*/
|
*/
|
||||||
class UserCard extends \yii\db\ActiveRecord
|
class UserCard extends \yii\db\ActiveRecord
|
||||||
{
|
{
|
||||||
@ -171,6 +172,14 @@ class UserCard extends \yii\db\ActiveRecord
|
|||||||
return $this->hasOne(Status::class, ['id' => 'status']);
|
return $this->hasOne(Status::class, ['id' => 'status']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return \yii\db\ActiveQuery
|
||||||
|
*/
|
||||||
|
public function getAchievements(): \yii\db\ActiveQuery
|
||||||
|
{
|
||||||
|
return $this->hasMany(AchievementUserCard::class, ['user_card_id' => 'id'])->with('achievement');
|
||||||
|
}
|
||||||
|
|
||||||
public function getGenders()
|
public function getGenders()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
@ -0,0 +1,66 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use yii\db\Migration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the creation of table `{{%achievement}}`.
|
||||||
|
*/
|
||||||
|
class m210908_110644_create_achievement_table_and_link_table_to_user_card extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function safeUp()
|
||||||
|
{
|
||||||
|
$this->createTable('{{%achievement}}', [
|
||||||
|
'id' => $this->primaryKey(),
|
||||||
|
'slug' => $this->string(255),
|
||||||
|
'title' => $this->string(255),
|
||||||
|
'img' => $this->text(),
|
||||||
|
'description' => $this->text(),
|
||||||
|
'status' => $this->integer()->defaultValue(1),
|
||||||
|
]);
|
||||||
|
$this->createTable('{{%achievement_user_card}}', [
|
||||||
|
'id' => $this->primaryKey(),
|
||||||
|
'user_card_id' => $this->integer(),
|
||||||
|
'achievement_id' => $this->integer()
|
||||||
|
]);
|
||||||
|
$this->addForeignKey(
|
||||||
|
'fk-achievement_user_card-user_id',
|
||||||
|
'achievement_user_card',
|
||||||
|
'user_card_id',
|
||||||
|
'user_card',
|
||||||
|
'id',
|
||||||
|
'CASCADE'
|
||||||
|
);
|
||||||
|
$this->addForeignKey(
|
||||||
|
'fk-achievement_user_card-achievement_id',
|
||||||
|
'achievement_user_card',
|
||||||
|
'achievement_id',
|
||||||
|
'achievement',
|
||||||
|
'id',
|
||||||
|
'CASCADE'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function safeDown()
|
||||||
|
{
|
||||||
|
$this->dropForeignKey(
|
||||||
|
'fk-achievement_user_card-user_id',
|
||||||
|
'achievement_user_card'
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->dropForeignKey(
|
||||||
|
'fk-achievement_user_card-achievement_id',
|
||||||
|
'achievement_user_card'
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->dropTable('{{%achievement_user_card}}');
|
||||||
|
|
||||||
|
$this->dropTable('{{%achievement}}');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -4,6 +4,7 @@
|
|||||||
namespace frontend\modules\card\controllers;
|
namespace frontend\modules\card\controllers;
|
||||||
|
|
||||||
use common\classes\Debug;
|
use common\classes\Debug;
|
||||||
|
use common\models\AchievementUserCard;
|
||||||
use common\models\CardSkill;
|
use common\models\CardSkill;
|
||||||
use common\models\FieldsValueNew;
|
use common\models\FieldsValueNew;
|
||||||
use common\models\User;
|
use common\models\User;
|
||||||
@ -60,10 +61,18 @@ class UserCardController extends Controller
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
$skills = CardSkill::find()->where(['card_id' => $id])->with('skill')->all();
|
$skills = CardSkill::find()->where(['card_id' => $id])->with('skill')->all();
|
||||||
|
$achievements = AchievementUserCard::find()
|
||||||
|
->where(['user_card_id' => $id])
|
||||||
|
->innerJoinWith(['achievement' => function($query) {
|
||||||
|
$query->andWhere(['status' => \common\models\Achievement::STATUS_ACTIVE]);
|
||||||
|
}])
|
||||||
|
->all();
|
||||||
|
|
||||||
return $this->render('view', [
|
return $this->render('view', [
|
||||||
'model' => $this->findModel($id),
|
'model' => $this->findModel($id),
|
||||||
'modelFildValue' => $dataProvider,
|
'modelFildValue' => $dataProvider,
|
||||||
'skills' => $skills,
|
'skills' => $skills,
|
||||||
|
'achievements' => $achievements,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
else return $this->render('index', ['info' => '<h3>Ваши личные данные не заненсены в базу.</h3>']);
|
else return $this->render('index', ['info' => '<h3>Ваши личные данные не заненсены в базу.</h3>']);
|
||||||
|
@ -7,6 +7,7 @@ use yii\widgets\DetailView;
|
|||||||
/* @var $this yii\web\View */
|
/* @var $this yii\web\View */
|
||||||
/* @var $skills \common\models\CardSkill */
|
/* @var $skills \common\models\CardSkill */
|
||||||
/* @var $skill \common\models\Skill */
|
/* @var $skill \common\models\Skill */
|
||||||
|
/* @var $achievements \common\models\Achievement */
|
||||||
/* @var $modelFildValue yii\data\ActiveDataProvider */
|
/* @var $modelFildValue yii\data\ActiveDataProvider */
|
||||||
/* @var $model */
|
/* @var $model */
|
||||||
|
|
||||||
@ -31,13 +32,24 @@ $this->title = 'Профиль';
|
|||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<h2>Навыки</h2>
|
<h2>Навыки</h2>
|
||||||
|
|
||||||
<?php foreach ($skills as $skill) : ?>
|
<?php foreach ($skills as $skill) : ?>
|
||||||
<span class="btn btn-default btn-sm"><?= $skill['skill']->name; ?></span>
|
<span class="btn btn-default btn-sm"><?= $skill['skill']->name; ?></span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
||||||
|
<h2>Достижения</h2>
|
||||||
|
<?php foreach ($achievements as $achievement) : ?>
|
||||||
|
<a target="_blank"
|
||||||
|
href="<? echo \yii\helpers\Url::to(['/achievements/achievements/view', 'id' => $achievement['achievement']->id]);?>"
|
||||||
|
class="btn btn-default btn-sm">
|
||||||
|
<?= Html::tag('img', null,
|
||||||
|
['src' => $achievement['achievement']->img, 'height' => '50px','width' => '50px']
|
||||||
|
) ?>
|
||||||
|
<?= $achievement['achievement']->title; ?>
|
||||||
|
</a>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
|
||||||
<h2>Дополнительные сведения</h2>
|
<h2>Дополнительные сведения</h2>
|
||||||
|
|
||||||
<?= GridView::widget([
|
<?= GridView::widget([
|
||||||
|
Loading…
Reference in New Issue
Block a user