예제 #1
0
 /**
  * Customized version to calculate the status of a minutes item regardless of its saved database entry.
  *
  * @param string|array $where  Where clause.
  * @param string|array $order  Order by.
  * @param string|array $count  Limit query.
  * @param string|array $offset Query offset.
  * @param string       $select The comma-separated columns of the joined columns.
  * @param string       $join   The join statements.
  *
  * @return Zend_Db_Table_Rowset The rowset with the results.
  */
 public function fetchAll($where = null, $order = null, $count = null, $offset = null, $select = null, $join = null)
 {
     $result = parent::fetchAll($where, $order, $count, $offset, $select, $join);
     return array_map(array($this, '_calcStatus'), $result);
 }