예제 #1
0
 /**
  * Gets all entries
  *
  * @param string $_orderBy Order result by
  * @param string $_orderDirection Order direction - allowed are ASC and DESC
  * @throws Tinebase_Exception_InvalidArgument
  * @return Tinebase_Record_RecordSet of Calendar_Model_Event
  */
 public function getAll($_orderBy = 'id', $_orderDirection = 'ASC')
 {
     $events = $this->_eventController->getAll($_orderBy, $_orderDirection);
     return $this->_toiTIP($events);
 }