GalleryLang.php
724 Bytes
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
<?php
    /**
     * Created by PhpStorm.
     * User: stes
     * Date: 07.05.18
     * Time: 15:09
     */
    
    namespace common\models;
    
    use yii\db\ActiveRecord;
    class GalleryLang extends ActiveRecord
    {
        public static function tableName()
        {
            return 'gallery_lang';
        }
    
        public function rules()
        {
            return [
                [
                    [
                        'title',
                    ],
                    'string',
                ],
            ];
        }
    
        public function attributeLabels()
        {
            return [
                'title' => \Yii::t('core', 'Title'),
            ];
        }
    } 
