48 lines
779 B
PHP
48 lines
779 B
PHP
<?php
|
|
|
|
namespace app\models;
|
|
|
|
use Yii;
|
|
|
|
/**
|
|
* This is the model class for table "parameters".
|
|
*
|
|
* @property int $id
|
|
* @property string $title
|
|
* @property int $type
|
|
*/
|
|
class Parameters extends \yii\db\ActiveRecord
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return 'parameters';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
[['title', 'type'], 'required'],
|
|
[['type'], 'integer'],
|
|
[['title'], 'string', 'max' => 255],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function attributeLabels()
|
|
{
|
|
return [
|
|
'id' => 'ID',
|
|
'title' => 'Title',
|
|
'type' => 'Type',
|
|
];
|
|
}
|
|
}
|