76 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace common\models;
 | 
						|
 | 
						|
use Yii;
 | 
						|
use yii\helpers\ArrayHelper;
 | 
						|
 | 
						|
/**
 | 
						|
 * This is the model class for table "status".
 | 
						|
 *
 | 
						|
 * @property int $id
 | 
						|
 * @property string $name
 | 
						|
 *
 | 
						|
 * @property UseStatus[] $useStatuses
 | 
						|
 * @property UserCard[] $userCards
 | 
						|
 */
 | 
						|
class Status extends \yii\db\ActiveRecord
 | 
						|
{
 | 
						|
    public $use = [];
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public static function tableName()
 | 
						|
    {
 | 
						|
        return 'status';
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            [['name', 'use'], 'required'],
 | 
						|
            [['name'], 'string', 'max' => 100],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function attributeLabels()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'id' => 'ID',
 | 
						|
            'name' => 'Название',
 | 
						|
            'use' => 'Применение',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \yii\db\ActiveQuery
 | 
						|
     */
 | 
						|
    public function getUseStatuses()
 | 
						|
    {
 | 
						|
        return $this->hasMany(UseStatus::class, ['status_id' => 'id']);
 | 
						|
    }
 | 
						|
 | 
						|
    public static function getStatusesArray($type)
 | 
						|
    {
 | 
						|
        return ArrayHelper::map(
 | 
						|
            self::find()
 | 
						|
                ->joinWith('useStatuses')
 | 
						|
                ->where(['`use_status`.`use`' => $type])->all(), 'id', 'name');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \yii\db\ActiveQuery
 | 
						|
     */
 | 
						|
    public function getUserCards()
 | 
						|
    {
 | 
						|
        return $this->hasMany(UserCard::class, ['status' => 'id']);
 | 
						|
    }
 | 
						|
}
 |