Blame view

backend/models/NewOptions.php 1.1 KB
b0f143c3   Yarik   first commit
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
  <?php
  
  namespace backend\models;
  
  use Yii;
  
  /**
   * This is the model class for table "new_options".
   *
   * @property integer $id
   * @property string $model
   * @property integer $model_id
   * @property string $name
   * @property string $template
   * @property integer $parent_id
   */
  class NewOptions extends \yii\db\ActiveRecord
  {
      /**
       * @inheritdoc
       */
      public static function tableName()
      {
          return 'new_options';
      }
  
      /**
       * @inheritdoc
       */
      public function rules()
      {
          return [
              [['model_id', 'parent_id'], 'integer'],
              [['name', 'template'], 'required'],
              [['model', 'name', 'template'], 'string', 'max' => 255]
          ];
      }
  
      /**
       * @inheritdoc
       */
      public function attributeLabels()
      {
          return [
              'id' => Yii::t('app', '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'),
          ];
      }
  }