/** * Returns all news in the database * @access public * @return Array returns array with all news in the database * @static */ public static function getAllNews() { $model = new NewsModel(); $news = $model->selectAll(); return $news; }