1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @package chamilo.calendar
- */
- //require_once '../inc/global.inc.php';
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH) . "calendar/agenda_js.php",
- 'name' => get_lang('Agenda')
- );
- $currentCourseId = api_get_course_int_id();
- $agenda = new Agenda();
- $type = isset($_REQUEST['type']) ? $_REQUEST['type'] : null;
- $agenda->setType($type);
- $events = $agenda->getEvents(
- null,
- null,
- $currentCourseId,
- api_get_group_id(),
- null,
- 'array'
- );
- $this_section = SECTION_MYAGENDA;
- if (!empty($currentCourseId) && $currentCourseId != -1) {
- // Agenda is inside a course tool
- $url = api_get_self() . '?' . api_get_cidreq();
- $this_section = SECTION_COURSES;
- } else {
- // Agenda is out of the course tool (e.g personal agenda)
-
- // Little hack to sort the events by start date in personal agenda (Agenda events List view - See #8014)
- usort($events, function($a, $b) {
- $t1 = strtotime($a['start']);
- $t2 = strtotime($b['start']);
- return $t1 - $t2;
- });
-
- $url = false;
- if (!empty($events)) {
- foreach ($events as &$event) {
- $courseId = isset($event['course_id']) ? $event['course_id'] : '';
- $event['url'] = api_get_self() . '?cid=' . $courseId . '&type=' . $event['type'];
- }
- }
- }
- $actions = $agenda->displayActions('list');
- $tpl = new Template(get_lang('Events'));
- $tpl->assign('agenda_events', $events);
- $tpl->assign('url', $url);
- $tpl->assign('actions', $actions);
- $tpl->assign('is_allowed_to_edit', api_is_allowed_to_edit());
- if (api_is_allowed_to_edit()) {
- if (isset($_GET['action']) && $_GET['action'] == 'change_visibility') {
- $courseInfo = api_get_course_info();
- if (empty($courseInfo)) {
- // This happens when list agenda is not inside a course
- if (
- ($type == 'course' || $type == 'session') &&
- isset($_GET['cid']) &&
- intval($_GET['cid']) !== 0
- ) {
- // For course and session event types
- // Just needs course ID
- $courseInfo = array('real_id' => intval($_GET['cid']));
- $agenda->changeVisibility($_GET['id'], $_GET['visibility'], $courseInfo);
- }
- }
- header('Location: '. api_get_self());
- exit;
- }
- }
- // Loading Agenda template
- $templateName = $tpl->get_template('agenda/event_list.tpl');
- $content = $tpl->fetch($templateName);
- $tpl->assign('content', $content);
- // Loading main Chamilo 1 col template
- $tpl->display_one_col_template();
|