Option.php
1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace frontend\models;
use Yii;
/**
* This is the model class for table "option".
*
* @property integer $option_id
* @property string $model
* @property integer $model_id
* @property string $name
* @property string $template
* @property integer $parent_id
*/
class Option extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'option';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['model', 'model_id', 'name', 'template'], 'required'],
[['model_id', 'parent_id'], 'integer'],
[['model', 'name', 'template'], 'string', 'max' => 200]
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'option_id' => Yii::t('app', 'Option ID'),
'model' => Yii::t('app', 'Model'),
'model_id' => Yii::t('app', 'Model ID'),
'name' => Yii::t('app', 'Name'),
'template' => Yii::t('app', 'Template'),
'parent_id' => Yii::t('app', 'Parent ID'),
];
}
public function getLangs() {
return (new Language())->find()->where(['>', 'language_id', 0])->asArray()->all();
}
}