2011-08-11 13:22:07 +04:00
|
|
|
<?php
|
2011-09-24 00:59:24 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 Georg Ehrke <ownclouddev at georgswebsite dot de>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2011-09-23 00:22:52 +04:00
|
|
|
require_once ('../../lib/base.php');
|
2011-09-18 23:31:56 +04:00
|
|
|
OC_Util::checkLoggedIn();
|
2011-10-01 01:05:10 +04:00
|
|
|
OC_Util::checkAppEnabled('calendar');
|
2012-03-01 23:51:59 +04:00
|
|
|
|
2011-08-22 18:59:16 +04:00
|
|
|
// Create default calendar ...
|
2011-10-18 23:04:14 +04:00
|
|
|
$calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser(), 1);
|
2011-08-22 18:59:16 +04:00
|
|
|
if( count($calendars) == 0){
|
2011-10-15 00:16:28 +04:00
|
|
|
OC_Calendar_Calendar::addCalendar(OC_User::getUser(),'Default calendar');
|
2011-10-18 23:04:14 +04:00
|
|
|
$calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser(), 1);
|
2011-08-22 18:59:16 +04:00
|
|
|
}
|
2012-03-01 23:51:59 +04:00
|
|
|
|
2011-10-17 21:58:56 +04:00
|
|
|
$eventSources = array();
|
|
|
|
foreach($calendars as $calendar){
|
2011-10-19 21:07:56 +04:00
|
|
|
$eventSources[] = OC_Calendar_Calendar::getEventSourceInfo($calendar);
|
2011-10-17 21:58:56 +04:00
|
|
|
}
|
2012-03-01 23:51:59 +04:00
|
|
|
OC_Hook::emit('OC_Calendar', 'getSources', array('sources' => &$eventSources));
|
|
|
|
|
2011-10-21 20:19:44 +04:00
|
|
|
//Fix currentview for fullcalendar
|
|
|
|
if(OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'currentview', 'month') == "oneweekview"){
|
|
|
|
OC_Preferences::setValue(OC_USER::getUser(), "calendar", "currentview", "agendaWeek");
|
|
|
|
}
|
|
|
|
if(OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'currentview', 'month') == "onemonthview"){
|
|
|
|
OC_Preferences::setValue(OC_USER::getUser(), "calendar", "currentview", "month");
|
|
|
|
}
|
|
|
|
if(OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'currentview', 'month') == "listview"){
|
2011-10-21 20:27:12 +04:00
|
|
|
OC_Preferences::setValue(OC_USER::getUser(), "calendar", "currentview", "list");
|
2011-10-21 20:19:44 +04:00
|
|
|
}
|
|
|
|
|
2011-10-21 00:18:17 +04:00
|
|
|
OC_Util::addScript('3rdparty/fullcalendar', 'fullcalendar');
|
|
|
|
OC_Util::addStyle('3rdparty/fullcalendar', 'fullcalendar');
|
2012-01-16 23:22:54 +04:00
|
|
|
OC_Util::addScript('3rdparty/timepicker', 'jquery.ui.timepicker');
|
|
|
|
OC_Util::addStyle('3rdparty/timepicker', 'jquery.ui.timepicker');
|
2012-01-02 14:35:50 +04:00
|
|
|
if(OC_Preferences::getValue(OC_USER::getUser(), "calendar", "timezone") == null || OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'timezonedetection') == 'true'){
|
2011-11-11 18:51:44 +04:00
|
|
|
OC_UTIL::addScript('calendar', 'geo');
|
|
|
|
}
|
2011-10-17 21:34:00 +04:00
|
|
|
OC_Util::addScript('calendar', 'calendar');
|
|
|
|
OC_Util::addStyle('calendar', 'style');
|
|
|
|
OC_Util::addScript('', 'jquery.multiselect');
|
|
|
|
OC_Util::addStyle('', 'jquery.multiselect');
|
|
|
|
OC_App::setActiveNavigationEntry('calendar_index');
|
2011-10-17 21:58:56 +04:00
|
|
|
$tmpl = new OC_Template('calendar', 'calendar', 'user');
|
|
|
|
$tmpl->assign('eventSources', $eventSources);
|
2012-01-06 17:36:24 +04:00
|
|
|
if(array_key_exists('showevent', $_GET)){
|
|
|
|
$tmpl->assign('showevent', $_GET['showevent']);
|
|
|
|
}
|
2011-10-17 21:58:56 +04:00
|
|
|
$tmpl->printPage();
|