2012-05-29 15:34:27 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Georg Ehrke <georg@ownCloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('calendar');
|
2012-06-12 00:16:26 +04:00
|
|
|
$calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser());
|
|
|
|
foreach($calendars as $calendar){
|
|
|
|
OC_Calendar_Repeat::cleancalendar($calendar['id']);
|
|
|
|
OC_Calendar_Repeat::generatecalendar($calendar['id']);
|
|
|
|
}
|
|
|
|
OCP\JSON::success();
|