100], [['title','image'], 'string', 'max' => 250], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'translit' => 'Translit', 'title' => 'Title', 'image' => 'Image', 'gallery' => 'Gallery', ]; } public function behaviors() { return [ 'slug' => [ 'class' => 'common\behaviors\Slug', 'in_attribute' => 'title', 'out_attribute' => 'translit', 'translit' => true ] ]; } }