From: Georg Ehrke Date: Mon, 11 Jun 2012 15:15:50 +0000 (+0200) Subject: add function isrepeating to OC_Calendar_Object class and change OC_Calendar_Object... X-Git-Tag: v4.5.0beta1~74^2~407^2~36 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=009c4c9045f7df0f497682bbee6e55b7664f36e2;p=nextcloud-server.git add function isrepeating to OC_Calendar_Object class and change OC_Calendar_Object::getUTCforMDB from protected to public --- diff --git a/apps/calendar/lib/object.php b/apps/calendar/lib/object.php index b21ab3fe007..ba3fa814f36 100644 --- a/apps/calendar/lib/object.php +++ b/apps/calendar/lib/object.php @@ -300,7 +300,7 @@ class OC_Calendar_Object{ * This function creates a date string that can be used by MDB2. * Furthermore it converts the time to UTC. */ - protected static function getUTCforMDB($datetime){ + public static function getUTCforMDB($datetime){ return date('Y-m-d H:i', $datetime->format('U') - $datetime->getOffset()); } @@ -802,4 +802,9 @@ class OC_Calendar_Object{ $event = self::find($id); return $event['calendarid']; } + + public static function isrepeating($id){ + $event = self::find($id); + return ($event['repeating'] == 1)?true:false; + } }