255], [['translit', 'title', 'meta_title', 'description'], 'string', 'max' => 250] ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'name' => 'Название', 'work_type' => 'Категория работ', 'translit' => 'Транслит', 'title' => 'Заголовок', 'body' => 'Body', 'meta_title' => 'Meta Title', 'description' => 'Description', 'h1' => 'H1', 'seo_text' => 'Seo Text', ]; } public function shortenString( $str, $length = 200 ) { if( strlen($str) > $length ) { $str = wordwrap( $str, $length, '||BR||', false ); $str = mb_substr( $str, 0, mb_strpos( $str, '||BR||', 0, 'UTF-8' ), 'UTF-8' ); $str .= '...'; } return $str; } }