国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

php - yii2.0 language pack problem
淡淡煙草味
淡淡煙草味 2017-06-06 09:53:46
0
1
810

I built a Chinese language package in frontend>messages, why can’t it be used in the form model in frontend>model? 'id'=> Yii::t('common','ID'), says Yii is an undefined class? Please God, what is going on?

This is the code for the language pack:

return [
    'Blog'=>'博客',
    'Article'=>'文章',
    'Signup'=>'注冊',
    'Login'=>'登錄',
    'Email' => '郵箱',
    'artTitle'=> '文章標題',
];

This is the calling code:

public function attributeLabels()
    {
        return [
            //'id'=> Yii::t('common','ID'),
            //'id' => '編碼',
            //'title' => '標題',
            'title' => yii::t('common','artTitle'),
            'content' => '內(nèi)容',
            'label_img' =>'標簽圖',
            'tags' => '標簽',
            'cat_id'=>'分類'
        ];
    }

yii said it is an undefined class~
Please give me some guidance on how to modify it

淡淡煙草味
淡淡煙草味

reply all(1)
滿天的星座

If you do not use Yii, you need Yii:t() to indicate that you are searching in the root namespace.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template