_fields = array( '_date' => 'date', '_count' => 'count'); parent::__construct($dom); // filter fields $this->_date = new Zend_Date(strtotime($this->_date)); $this->_count = (int) $this->_count; } /** * Returns the date of count. * * @return Zend_Date */ public function getDate() { return $this->_date; } /** * Returns the number of posts containing query on given date. * * @return int */ public function getCount() { return $this->_count; } }