"../group/group.php", "name" => get_lang('Groups'));
$interbreadcrumb[] = array(
"url" => "../group/group_space.php?gidReq=".$group_id,
"name" => get_lang('GroupSpace').' '.$group_properties['name']
);
Display::display_header($nameTools, 'Agenda');
} elseif (empty($origin) or $origin != 'learnpath') {
Display::display_header($nameTools, 'Agenda');
}
/*
TRACKING
*/
event_access_tool(TOOL_CALENDAR_EVENT);
/* SETTING SOME VARIABLES
*/
// Variable definitions
// Defining the shorts for the days. We use camelcase because these are arrays of language variables
$DaysShort = api_get_week_days_short();
// Defining the days of the week to allow translation of the days. We use camelcase because these are arrays of language variables
$DaysLong = api_get_week_days_long();
// Defining the months of the year to allow translation of the months. We use camelcase because these are arrays of language variables
$MonthsLong = api_get_months_long();
// Database table definitions
$TABLEAGENDA = Database::get_course_table(TABLE_AGENDA);
$TABLE_ITEM_PROPERTY = Database::get_course_table(TABLE_ITEM_PROPERTY);
$tbl_user = Database::get_main_table(TABLE_MAIN_USER);
$tbl_courseUser = Database::get_main_table(TABLE_MAIN_COURSE_USER);
$tbl_group = Database::get_course_table(TABLE_GROUP);
$tbl_groupUser = Database::get_course_table(TABLE_GROUP_USER);
/* ACCESS RIGHTS */
// permission stuff - also used by loading from global in agenda.inc.php
$is_allowed_to_edit = api_is_allowed_to_edit(false, true) OR (api_get_course_setting(
'allow_user_edit_agenda'
) && !api_is_anonymous());
// Tool introduction
Display::display_introduction_section(TOOL_CALENDAR_EVENT);
/* MAIN SECTION */
//setting the default year and month
$select_year = '';
$select_month = '';
$select_day = '';
if (!empty($_GET['year'])) {
$select_year = (int)$_GET['year'];
}
if (!empty($_GET['month'])) {
$select_month = (int)$_GET['month'];
}
if (!empty($_GET['day'])) {
$select_day = (int)$_GET['day'];
}
$today = getdate();
if (empty($select_year)) {
$select_year = $today['year'];
}
if (empty($select_month)) {
$select_month = $today['mon'];
}
echo '
';
if (api_is_allowed_to_edit(false, true) OR
(api_get_course_setting('allow_user_edit_agenda') && !api_is_anonymous()) && api_is_allowed_to_session_edit(
false,
true
) OR
GroupManager::user_has_access(
api_get_user_id(),
$group_id,
GroupManager::GROUP_TOOL_CALENDAR
) && GroupManager::is_tutor_of_group(api_get_user_id(), $group_id)
) {
echo display_courseadmin_links();
}
echo '
';
$event_id = isset($_REQUEST['id']) ? $_REQUEST['id'] : null;
$type = $event_type = isset($_GET['type']) ? $_GET['type'] : null;
if ($type == 'fromjs') {
$id_list = explode('_', $event_id);
$event_id = $id_list[1];
$event_type = $id_list[0];
}
if (!api_is_allowed_to_edit(null, true) && $event_type == 'course') {
api_not_allowed();
}
$course_info = api_get_course_info();
if (api_is_allowed_to_edit(false, true) or
(
api_get_course_setting('allow_user_edit_agenda') &&
!api_is_anonymous() &&
api_is_allowed_to_session_edit(false, true)
) or
GroupManager::user_has_access(api_get_user_id(), $group_id, GroupManager::GROUP_TOOL_CALENDAR) &&
GroupManager::is_tutor_of_group(api_get_user_id(), $group_id)
) {
switch ($action) {
case 'add':
if (isset($_POST['submit_event']) && $_POST['submit_event']) {
$startDate = Text::return_datetime_from_array($_POST['start_date']);
$endDate = Text::return_datetime_from_array($_POST['end_date']);
$repeatEndDay = Text::return_datetime_from_array($_POST['repeat_end_day']);
$fileComment = isset($_POST['file_comment']) ? $_POST['file_comment'] : null;
$fileAttachment = isset($_FILES['user_upload']) ? $_FILES['user_upload'] : null;
$agenda = new Agenda();
$agenda->setType('course');
$repeatSettings = array();
if (!empty($_POST['repeat'])) {
$repeatSettings = array(
'repeat_type' => $_POST['repeat_type'],
'repeat_end' => $repeatEndDay
);
/*
$res = agenda_add_repeat_item(
$course_info,
$id,
$_POST['repeat_type'],
$repeatEndDay,
$_POST['users'],
$safe_file_comment
);*/
}
$id = $agenda->add_event(
$startDate,
$endDate,
null,
null,
$_POST['title'],
$_POST['content'],
$_POST['users'],
false,
null,
array('comment' => $fileComment, 'file' => $fileAttachment),
$repeatSettings
);
Display::display_confirmation_message(get_lang('AddSuccess'));
} else {
show_add_form();
}
break;
case "announce":
//copying the agenda item into an announcement
if (!(api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $event_id))) {
// a coach can only delete an element belonging to his session
$ann_id = store_agenda_item_as_announcement($event_id);
$tool_group_link = (isset($_SESSION['toolgroup']) ? '&toolgroup='.$_SESSION['toolgroup'] : '');
Display::display_normal_message(
get_lang(
'CopiedAsAnnouncement'
).' '.get_lang(
'NewAnnouncement'
).'',
false
);
}
break;
case 'importical':
if (isset($_POST['ical_submit'])) {
$ical_name = $_FILES['ical_import']['name'];
$ical_type = $_FILES['ical_import']['type'];
$ext = substr($ical_name, (strrpos($ical_name, ".") + 1));
//$ical_type === 'text/calendar'
if ($ext === 'ics' || $ext === 'ical' || $ext === 'icalendar' || $ext === 'ifb') {
$agenda_result = agenda_import_ical($course_info, $_FILES['ical_import']);
$is_ical = true;
} else {
$is_ical = false;
}
if (!$is_ical) {
Display::display_error_message(get_lang('IsNotiCalFormatFile'));
display_ical_import_form();
break;
} else {
Display::display_confirmation_message(get_lang('AddSuccess'));
echo $agenda_result;
}
} else {
display_ical_import_form();
}
break;
case 'edit':
// a coach can only delete an element belonging to his session
if ($_POST['submit_event']) {
store_edited_agenda_item($event_id, $_REQUEST['id_attach'], $_REQUEST['file_comment']);
$action = 'view';
} else {
show_add_form($event_id, $event_type);
}
break;
case "delete":
if (!(api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $event_id))) {
// a coach can only delete an element belonging to his session
delete_agenda_item($event_id);
$action = 'view';
}
break;
case "showhide":
if (!(api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $event_id))) {
// a coach can only delete an element belonging to his session
showhide_agenda_item($event_id);
$action = 'view';
}
if (!empty($_GET['agenda_id'])) {
display_one_agenda_item($_GET['agenda_id']);
}
break;
case "delete_attach": //delete attachment file
$id_attach = $_GET['id_attach'];
if (!empty($id_attach)) {
delete_attachment_file($id_attach);
$action = 'view';
}
break;
}
}
// The footer is displayed only if we are not in the learnpath
if ($origin != 'learnpath') {
Display::display_footer();
}