_newsData)) { $select = $this->db->select(); $select->from($this->_getTableName('News'), array('id', 'title', 'date', 'image')); //$select->where(); $select->order('date DESC'); $select->limit(5); $this->_newsData = $this->db->fetchAll($select); } return $this->_newsData; } }