some changes for calendar repeat class

This commit is contained in:
Georg Ehrke 2012-05-12 23:16:11 +02:00
parent b1cae9651e
commit dfef36ba2f
1 changed files with 13 additions and 5 deletions

View File

@ -15,25 +15,33 @@ class OC_Calendar_Repeat{
*/ */
public static function get(); public static function get();
/* /*
* @brief returns the cache of an event in a specific peroid * @brief returns the cache of an event in a specific peroid
*/ */
public static function get_inperiod(); public static function get_inperiod();
/* /*
* @brief returns the cache of all events of a calendar * @brief returns the cache of all repeating events of a calendar
*/ */
public static function getcalendar(); public static function getcalendar();
/* /*
* @brief returns the cache of all events of a calendar in a specific period * @brief returns the cache of all repeating events of a calendar in a specific period
*/ */
public static function getcalendar_inperiod(); public static function getcalendar_inperiod();
/* /*
* @brief generates the cache the first time * @brief generates the cache the first time
*/ */
public static function generate(); public static function generate();
/*
* @brief generates the cache the first time for all repeating event of an calendar
*/
public static function generatecalendar();
/* /*
* @brief updates an event that is already cached * @brief updates an event that is already cached
*/ */
public static function update(); public static function update();
/*
* @brief updates all repating events of a calendar that are already cached
*/
public static function updatecalendar();
/* /*
* @brief checks if an event is already cached * @brief checks if an event is already cached
*/ */