mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
some changes for calendar repeat class
This commit is contained in:
parent
b1cae9651e
commit
dfef36ba2f
1 changed files with 13 additions and 5 deletions
|
|
@ -15,25 +15,33 @@ class OC_Calendar_Repeat{
|
|||
*/
|
||||
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();
|
||||
/*
|
||||
* @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();
|
||||
/*
|
||||
* @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();
|
||||
/*
|
||||
* @brief generates the cache the first time
|
||||
*/
|
||||
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
|
||||
*/
|
||||
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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue