Achievement model. Achievement CRUD pages. Achievements at sidebar
This commit is contained in:
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,
|
||||
]
|
||||
];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user