2011-08-31 22:20:46 +04:00
|
|
|
<?php
|
2011-09-24 00:59:24 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2011-08-31 22:20:46 +04:00
|
|
|
require_once('../../../lib/base.php');
|
2011-12-22 19:31:01 +04:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-10-01 01:05:10 +04:00
|
|
|
OC_JSON::checkAppEnabled('calendar');
|
2011-12-19 01:58:20 +04:00
|
|
|
|
2011-10-14 16:56:18 +04:00
|
|
|
$calendarcolor_options = OC_Calendar_Calendar::getCalendarColorOptions();
|
2011-12-19 01:58:20 +04:00
|
|
|
$calendar = OC_Calendar_App::getCalendar($_GET['calendarid']);
|
2011-08-31 22:20:46 +04:00
|
|
|
$tmpl = new OC_Template("calendar", "part.editcalendar");
|
2011-09-08 14:29:29 +04:00
|
|
|
$tmpl->assign('new', false);
|
2011-10-03 22:32:31 +04:00
|
|
|
$tmpl->assign('calendarcolor_options', $calendarcolor_options);
|
2011-09-08 14:29:29 +04:00
|
|
|
$tmpl->assign('calendar', $calendar);
|
2011-08-31 22:20:46 +04:00
|
|
|
$tmpl->printPage();
|
|
|
|
?>
|