guild/common/models/Achievement.php

66 lines
1.4 KiB
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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' => 'Изображение',
];
}
}