255], [['translit', 'title', 'meta_title', 'description'], 'string', 'max' => 250] ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'name' => 'Name', 'translit' => 'Translit', 'title' => 'Title', 'body' => 'Body', 'meta_title' => 'Meta Title', 'description' => 'Description', 'h1' => 'H1', 'seo_text' => 'Seo Text', ]; } public function getPageTranslit($page){ return self::find() ->where(['translit' => $page]) ->one(); } }