255], [['meta_title'], 'string', 'max' => 70], [['url'], 'string', 'max' => 128], [['description'], 'string', 'max' => 300], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'topic_id' => 'Topic ID', 'title' => 'Title', 'meta_title' => 'Meta Title', 'url' => 'Url', 'keywords' => 'Keywords', 'description' => 'Description', 'order' => 'Order', 'active' => 'Active', 'show' => 'Show', 'ext' => 'Ext', ]; } /** * {@inheritdoc} * @return StoryQuery the active query used by this AR class. */ public static function find() { return new StoryQuery(get_called_class()); } }