|
|
|
|
@ -12,6 +12,7 @@ if(!OC_USER::isLoggedIn()) {
|
|
|
|
|
die("<script type=\"text/javascript\">document.location = oc_webroot;</script>");
|
|
|
|
|
}
|
|
|
|
|
OC_JSON::checkAppEnabled('calendar');
|
|
|
|
|
$calendarcolor_options = OC_Calendar_Calendar::getCalendarColorOptions();
|
|
|
|
|
$calendar = array(
|
|
|
|
|
'id' => 'new',
|
|
|
|
|
'displayname' => '',
|
|
|
|
|
@ -19,6 +20,7 @@ $calendar = array(
|
|
|
|
|
);
|
|
|
|
|
$tmpl = new OC_Template('calendar', 'part.editcalendar');
|
|
|
|
|
$tmpl->assign('new', true);
|
|
|
|
|
$tmpl->assign('calendarcolor_options', $calendarcolor_options);
|
|
|
|
|
$tmpl->assign('calendar', $calendar);
|
|
|
|
|
$tmpl->printPage();
|
|
|
|
|
?>
|
|
|
|
|
|