|
|
|
@ -146,7 +146,7 @@ function get_calendar_items($month, $year) { |
|
|
|
|
FROM ".$TABLEAGENDA." agenda, ".$TABLE_ITEM_PROPERTY." ip |
|
|
|
|
WHERE agenda.id = ip.ref ".$show_all_current." |
|
|
|
|
AND ip.tool='".TOOL_CALENDAR_EVENT."' |
|
|
|
|
AND ( ip.to_user_id=$user_id OR ip.to_group_id='0') |
|
|
|
|
AND ( ip.to_user_id=$user_id ) |
|
|
|
|
AND ip.visibility='1' |
|
|
|
|
$session_condition |
|
|
|
|
ORDER BY start_date ".$_SESSION['sort']; |
|
|
|
@ -155,13 +155,12 @@ function get_calendar_items($month, $year) { |
|
|
|
|
// A.2. you are a course admin with a GROUP filter |
|
|
|
|
// => see only the messages of this specific group |
|
|
|
|
elseif (!empty($_SESSION['group'])) { |
|
|
|
|
|
|
|
|
|
$sql="SELECT |
|
|
|
|
agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref |
|
|
|
|
FROM ".$TABLEAGENDA." agenda, ".$TABLE_ITEM_PROPERTY." ip |
|
|
|
|
WHERE agenda.id = ip.ref ".$show_all_current." |
|
|
|
|
AND ip.tool='".TOOL_CALENDAR_EVENT."' |
|
|
|
|
AND ( ip.to_group_id=$group_id OR ip.to_group_id='0') |
|
|
|
|
AND ( ip.to_group_id=$group_id) |
|
|
|
|
AND ip.visibility='1' |
|
|
|
|
$session_condition |
|
|
|
|
GROUP BY ip.ref |
|
|
|
@ -244,7 +243,7 @@ function get_calendar_items($month, $year) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//Check my personal agenda events |
|
|
|
|
if (api_get_setting('allow_personal_agenda') == 'true') { |
|
|
|
|
if (api_get_setting('allow_personal_agenda') == 'true' && empty($_SESSION['user']) && empty($_SESSION['group'])) { |
|
|
|
|
$tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA); |
|
|
|
|
// 1. creating the SQL statement for getting the personal agenda items in MONTH view |
|
|
|
|
$sql = "SELECT id, title, text as content , date as start_date, enddate as end_date, parent_event_id FROM ".$tbl_personal_agenda." |
|
|
|
@ -258,13 +257,10 @@ function get_calendar_items($month, $year) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Check global agenda events */ |
|
|
|
|
if (empty($_SESSION['user']) && empty($_SESSION['group'])) { |
|
|
|
|
$table_agenda_system = Database :: get_main_table(TABLE_MAIN_SYSTEM_CALENDAR); |
|
|
|
|
|
|
|
|
|
global $_configuration; |
|
|
|
|
$current_access_url_id = 1; |
|
|
|
|
if ($_configuration['multiple_access_urls']) { |
|
|
|
|
$current_access_url_id = api_get_current_access_url_id(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$sql = "SELECT DISTINCT * FROM ".$table_agenda_system." |
|
|
|
|
WHERE |
|
|
|
@ -278,6 +274,7 @@ function get_calendar_items($month, $year) { |
|
|
|
|
$row['calendar_type'] = 'global'; |
|
|
|
|
$data[$datum_item][$datum_item][] = $row; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return $data; |
|
|
|
|
} |
|
|
|
@ -392,18 +389,19 @@ function display_monthcalendar($month, $year) { |
|
|
|
|
|
|
|
|
|
//Get the first day of the month |
|
|
|
|
$dayone = getdate(mktime(0,0,0,$month,1,$year)); |
|
|
|
|
|
|
|
|
|
//Start the week on monday |
|
|
|
|
$startdayofweek = $dayone['wday']<>0 ? ($dayone['wday']-1) : 6; |
|
|
|
|
|
|
|
|
|
$backwardsURL = api_get_self()."?".api_get_cidreq()."&view=".Security::remove_XSS($_GET['view'])."&origin=$origin&month=".($month==1 ? 12 : $month-1)."&year=".($month==1 ? $year-1 : $year); |
|
|
|
|
$forewardsURL = api_get_self()."?".api_get_cidreq()."&view=".Security::remove_XSS($_GET['view'])."&origin=$origin&month=".($month==12 ? 1 : $month+1)."&year=".($month==12 ? $year+1 : $year); |
|
|
|
|
|
|
|
|
|
$maand_array_maandnummer=$month-1; |
|
|
|
|
$new_month = $month-1; |
|
|
|
|
|
|
|
|
|
echo '<table id="agenda_list">'; |
|
|
|
|
echo '<tr>'; |
|
|
|
|
echo '<th width="10%"><a href="'.$backwardsURL.'">'.Display::return_icon('action_prev.png',get_lang('Previous'), array(), 32).'</a></th>'; |
|
|
|
|
echo '<th width="80%" colspan="5"><br /><h3>'.$MonthsLong[$maand_array_maandnummer].' '.$year.'</h3></th>'; |
|
|
|
|
echo '<th width="80%" colspan="5"><br /><h3>'.$MonthsLong[$new_month].' '.$year.'</h3></th>'; |
|
|
|
|
echo '<th width="10%"><a href="'.$forewardsURL.'"> '.Display::return_icon('action_next.png',get_lang('Next'), array(), 32).'</a></th>'; |
|
|
|
|
echo '</tr>'; |
|
|
|
|
|
|
|
|
@ -1760,10 +1758,10 @@ function showhide_agenda_item($id) { |
|
|
|
|
function display_agenda_items($select_month, $select_year) { |
|
|
|
|
$TABLEAGENDA = Database::get_course_table(TABLE_AGENDA); |
|
|
|
|
$TABLE_ITEM_PROPERTY = Database::get_course_table(TABLE_ITEM_PROPERTY); |
|
|
|
|
//not used in the function |
|
|
|
|
//global $DaysShort, $DaysLong, $MonthsLong; |
|
|
|
|
//global $is_courseAdmin; |
|
|
|
|
//global $dateFormatLong, $timeNoSecFormat,$charset, $_course; |
|
|
|
|
|
|
|
|
|
$select_month = intval($select_month); |
|
|
|
|
$select_year = intval($select_year); |
|
|
|
|
|
|
|
|
|
global $charset, $_course; |
|
|
|
|
|
|
|
|
|
// getting the group memberships |
|
|
|
@ -1771,19 +1769,16 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
|
|
|
|
|
// getting the name of the groups |
|
|
|
|
$group_names = get_course_groups(); |
|
|
|
|
/* CONSTRUCT THE SQL STATEMENT */ |
|
|
|
|
|
|
|
|
|
$start = 0; |
|
|
|
|
$stop = 0; |
|
|
|
|
$select_month = intval($select_month); |
|
|
|
|
$select_year = intval($select_year); |
|
|
|
|
|
|
|
|
|
// this is to make a difference between showing everything (all months) or only the current month) |
|
|
|
|
// $show_all_current is a part of the sql statement |
|
|
|
|
//if ($_SESSION['show']!=='showall') { |
|
|
|
|
if (!empty($select_month) && !empty($select_year)) { |
|
|
|
|
$show_all_current =" AND MONTH(start_date)=$select_month AND year(start_date)=$select_year"; |
|
|
|
|
$show_all_current_personal =" AND MONTH(date)=$select_month AND year(date)=$select_year"; |
|
|
|
|
|
|
|
|
|
$start = mktime(0,0,0,$select_month,1,$select_year); |
|
|
|
|
$stop = 0; |
|
|
|
|
if (empty($select_year)) { $select_year = date('Y');} |
|
|
|
@ -1802,6 +1797,7 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
|
|
|
|
|
// by default we use the id of the current user. The course administrator can see the agenda of other users by using the user / group filter |
|
|
|
|
$user_id=api_get_user_id(); |
|
|
|
|
|
|
|
|
|
if ($_SESSION['user']!==null) { |
|
|
|
|
$user_id=intval($_SESSION['user']); |
|
|
|
|
} |
|
|
|
@ -1825,6 +1821,7 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
if (api_is_allowed_to_edit(false,true) OR (api_get_course_setting('allow_user_edit_agenda') && !api_is_anonymous())) { |
|
|
|
|
// A.1. you are a course admin with a USER filter |
|
|
|
|
// => see only the messages of this specific user + the messages of the group (s)he is member of. |
|
|
|
|
|
|
|
|
|
if (!empty($_SESSION['user'])) { |
|
|
|
|
$group_memberships = GroupManager::get_group_ids($_course['dbName'], $_SESSION['user']); |
|
|
|
|
|
|
|
|
@ -1851,12 +1848,12 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
$session_condition |
|
|
|
|
ORDER BY start_date ".$_SESSION['sort']; |
|
|
|
|
} else { |
|
|
|
|
$sql="SELECT |
|
|
|
|
agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref |
|
|
|
|
//AND ( ip.to_user_id=$user_id OR ip.to_group_id='0') |
|
|
|
|
$sql="SELECT agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref |
|
|
|
|
FROM ".$TABLEAGENDA." agenda, ".$TABLE_ITEM_PROPERTY." ip |
|
|
|
|
WHERE agenda.id = ip.ref ".$show_all_current." |
|
|
|
|
AND ip.tool='".TOOL_CALENDAR_EVENT."' |
|
|
|
|
AND ( ip.to_user_id=$user_id OR ip.to_group_id='0') |
|
|
|
|
AND ( ip.to_user_id=$user_id) |
|
|
|
|
AND ip.visibility='1' |
|
|
|
|
$session_condition |
|
|
|
|
ORDER BY start_date ".$_SESSION['sort']; |
|
|
|
@ -1880,7 +1877,7 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
FROM ".$TABLEAGENDA." agenda, ".$TABLE_ITEM_PROPERTY." ip |
|
|
|
|
WHERE agenda.id = ip.ref ".$show_all_current." |
|
|
|
|
AND ip.tool='".TOOL_CALENDAR_EVENT."' |
|
|
|
|
AND ( ip.to_group_id=$group_id OR ip.to_group_id='0') |
|
|
|
|
AND ( ip.to_group_id=$group_id) |
|
|
|
|
AND ip.lastedit_type<>'CalendareventDeleted' |
|
|
|
|
$session_condition |
|
|
|
|
GROUP BY ip.ref |
|
|
|
@ -2003,11 +2000,7 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
$result = Database::query($sql); |
|
|
|
|
$number_items = Database::num_rows($result); |
|
|
|
|
|
|
|
|
|
/* DISPLAY: NO ITEMS */ |
|
|
|
|
|
|
|
|
|
if ($number_items==0) { |
|
|
|
|
echo "<table class=\"data_table\" ><tr><td>".get_lang('NoAgendaItems')."</td></tr></table>"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* DISPLAY: THE ITEMS */ |
|
|
|
|
|
|
|
|
@ -2025,7 +2018,7 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//Check my personal calendar items |
|
|
|
|
if (api_get_setting('allow_personal_agenda') == 'true') { |
|
|
|
|
if (api_get_setting('allow_personal_agenda') == 'true' && empty($_SESSION['user']) && empty($_SESSION['group'])) { |
|
|
|
|
$tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA); |
|
|
|
|
// 1. creating the SQL statement for getting the personal agenda items in MONTH view |
|
|
|
|
$sql = "SELECT id, title, text as content , date as start_date, enddate as end_date, parent_event_id FROM ".$tbl_personal_agenda." |
|
|
|
@ -2037,13 +2030,11 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (empty($_SESSION['user']) && empty($_SESSION['group'])) { |
|
|
|
|
|
|
|
|
|
//Check global agenda events */ |
|
|
|
|
$table_agenda_system = Database :: get_main_table(TABLE_MAIN_SYSTEM_CALENDAR); |
|
|
|
|
global $_configuration; |
|
|
|
|
$current_access_url_id = 1; |
|
|
|
|
if ($_configuration['multiple_access_urls']) { |
|
|
|
|
$current_access_url_id = api_get_current_access_url_id(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$sql = "SELECT DISTINCT id, title, content , start_date, end_date FROM ".$table_agenda_system." |
|
|
|
|
WHERE 1=1 ".$show_all_current." AND access_url_id = $current_access_url_id |
|
|
|
@ -2053,21 +2044,40 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
$row['calendar_type'] = 'global'; |
|
|
|
|
$my_events[] = $row; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//DISPLAY: NO ITEMS |
|
|
|
|
if (empty($my_events)) { |
|
|
|
|
echo Display::display_warning_message(get_lang('NoAgendaItems')); |
|
|
|
|
} else { |
|
|
|
|
echo '<table class="data_table">'; |
|
|
|
|
$th = Display::tag('th', get_lang('Title')); |
|
|
|
|
$th .= Display::tag('th', get_lang('Content')); |
|
|
|
|
$th .= Display::tag('th', get_lang('SentTo')); |
|
|
|
|
$th .= Display::tag('th', get_lang('StartTimeWindow')); |
|
|
|
|
$th .= Display::tag('th', get_lang('EndTimeWindow')); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//if (!$is_repeated && (api_is_allowed_to_edit(false,true) OR (api_get_course_setting('allow_user_edit_agenda') && !api_is_anonymous())) && $myrow['calendar_type'] == 'course' ) { |
|
|
|
|
if ((api_is_allowed_to_edit(false,true) OR (api_get_course_setting('allow_user_edit_agenda') && !api_is_anonymous()))) { |
|
|
|
|
if( ! (api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $myrow['id'] ) ) ) { |
|
|
|
|
// a coach can only delete an element belonging to his session |
|
|
|
|
$th .= Display::tag('th', get_lang('Modify')); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
echo Display::tag('tr', $th); |
|
|
|
|
|
|
|
|
|
foreach ($my_events as $myrow) { |
|
|
|
|
$is_repeated = !empty($myrow['parent_event_id']); |
|
|
|
|
echo '<table class="data_table">'; |
|
|
|
|
/* display: the month bar */ |
|
|
|
|
// Make the month bar appear only once. |
|
|
|
|
$myrow["start_date"] = api_get_local_time($myrow["start_date"]); |
|
|
|
|
|
|
|
|
|
if ($month_bar != api_format_date($myrow["start_date"], "%m%Y")) { |
|
|
|
|
$month_bar = api_format_date($myrow["start_date"], "%m%Y"); |
|
|
|
|
//Showing month header |
|
|
|
|
/*//Showing month header |
|
|
|
|
echo '<tr><td class="agenda_month_divider" colspan="3" valign="top">'; |
|
|
|
|
echo '<h3>'.api_format_date($myrow["start_date"], "%B %Y").'</h3>'; |
|
|
|
|
echo '</td></tr>'; |
|
|
|
|
echo '</td></tr>';*/ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* display: the icon, title, destinees of the item */ |
|
|
|
@ -2091,66 +2101,73 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
$text_style="textnow"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
echo "<th>"; |
|
|
|
|
echo "<td>"; |
|
|
|
|
// adding an internal anchor |
|
|
|
|
echo "<a name=\"".(int)api_format_date($myrow["start_date"], "%d")."\"></a>"; |
|
|
|
|
//echo "<a name=\"".(int)api_format_date($myrow["start_date"], "%d")."\"></a>"; |
|
|
|
|
// the icons. If the message is sent to one or more specific users/groups |
|
|
|
|
// we add the groups icon |
|
|
|
|
// 2do: if it is sent to groups we display the group icon, if it is sent to a user we show the user icon |
|
|
|
|
if ($myrow['calendar_type'] == 'course') { |
|
|
|
|
Display::display_icon('event.png', get_lang('Course'),'',22); |
|
|
|
|
//Display::display_icon('event.png', get_lang('Course'),'',22); |
|
|
|
|
if ($myrow['to_group_id']!=='0') { |
|
|
|
|
echo Display::return_icon('group.png', get_lang('ItemForUserSelection'),'',22); |
|
|
|
|
//echo Display::return_icon('group.png', get_lang('ItemForUserSelection'),'',22); |
|
|
|
|
} |
|
|
|
|
echo '<span style="padding-left:5px; font-size:130%; ">'; |
|
|
|
|
echo $myrow['title']; |
|
|
|
|
echo '</span>'; |
|
|
|
|
} elseif ($myrow['calendar_type'] == 'personal') { |
|
|
|
|
Display::display_icon('user_event.png', get_lang('Personal'),'',22); |
|
|
|
|
echo '<span style="padding-left:5px; font-size:130%; ">'; |
|
|
|
|
//Display::display_icon('user_event.png', get_lang('Personal'),'',22); |
|
|
|
|
echo $myrow['title']; |
|
|
|
|
echo '</span>'; |
|
|
|
|
} else { |
|
|
|
|
Display::display_icon('platform_event.png', get_lang('Platform'),'',22);//TODO:check whether this still works |
|
|
|
|
echo '<span style="padding-left:5px; font-size:130%; ">'; |
|
|
|
|
//Display::display_icon('platform_event.png', get_lang('Platform'),'',22);//TODO:check whether this still works |
|
|
|
|
echo $myrow['title']; |
|
|
|
|
echo '</span>'; |
|
|
|
|
} |
|
|
|
|
echo '</th>'; |
|
|
|
|
echo '</td>'; |
|
|
|
|
|
|
|
|
|
$content = $myrow['content']; |
|
|
|
|
$content = make_clickable($content); |
|
|
|
|
$content = text_filter($content); |
|
|
|
|
|
|
|
|
|
echo '<td>'; |
|
|
|
|
echo $content; |
|
|
|
|
// show attachment list |
|
|
|
|
if (!empty($attachment_list)) { |
|
|
|
|
$realname=$attachment_list['path']; |
|
|
|
|
$user_filename=$attachment_list['filename']; |
|
|
|
|
$full_file_name = 'download.php?file='.$realname; |
|
|
|
|
echo Display::return_icon('attachment.gif',get_lang('Attachment')); |
|
|
|
|
echo '<a href="'.$full_file_name.'"> '.$user_filename.'</a>'; |
|
|
|
|
echo '<span class="forum_attach_comment" >'.$attachment_list['comment'].'</span>'; |
|
|
|
|
if (api_is_allowed_to_edit()) { |
|
|
|
|
echo ' <a href="'.api_get_self().'?'.api_get_cidreq().'&origin='.Security::remove_XSS($_GET['origin']).'&action=delete_attach&id_attach='.$attachment_list['id'].'" onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang("ConfirmYourChoice"),ENT_QUOTES,$charset)).'\')) return false;">'.Display::return_icon('delete.png',get_lang('Delete'),'',22).'</a><br />'; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
echo '</td>'; |
|
|
|
|
|
|
|
|
|
if ($myrow['calendar_type'] == 'course') { |
|
|
|
|
// the message has been sent to |
|
|
|
|
echo "<th>".get_lang('SentTo').": "; |
|
|
|
|
echo "<td>"; |
|
|
|
|
$sent_to=sent_to(TOOL_CALENDAR_EVENT, $myrow["ref"]); |
|
|
|
|
$sent_to_form = sent_to_form($sent_to); |
|
|
|
|
if ($myrow['to_group_id']!=='0') { |
|
|
|
|
echo ' '.Display::return_icon('group.png', get_lang('ItemForUserSelection'),'',22); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
echo $sent_to_form; |
|
|
|
|
echo '</th>'; |
|
|
|
|
echo '</td>'; |
|
|
|
|
} elseif ($myrow['calendar_type'] == 'personal') { |
|
|
|
|
echo '<th>'.get_lang('Personal').'</th>'; |
|
|
|
|
echo '<td>'.get_lang('Personal').'</td>'; |
|
|
|
|
} elseif ($myrow['calendar_type'] == 'global') { |
|
|
|
|
echo '<th>'.get_lang('GlobalEvent').'</th>'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!$is_repeated && (api_is_allowed_to_edit(false,true) OR (api_get_course_setting('allow_user_edit_agenda') && !api_is_anonymous())) && $myrow['calendar_type'] == 'course' ) { |
|
|
|
|
if( ! (api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $myrow['id'] ) ) ) { |
|
|
|
|
// a coach can only delete an element belonging to his session |
|
|
|
|
echo '<th>'.get_lang('Modify'); |
|
|
|
|
echo '</th></tr>'; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
echo '<th></th></tr>'; |
|
|
|
|
echo '<td>'.get_lang('GlobalEvent').'</td>'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* display: the title */ |
|
|
|
|
echo '<tr class="row_odd">'; |
|
|
|
|
echo '<td>'.get_lang('StartTimeWindow').': '; |
|
|
|
|
|
|
|
|
|
echo '<td>'; |
|
|
|
|
echo api_format_date($myrow['start_date']); |
|
|
|
|
echo '</td>'; |
|
|
|
|
echo '<td>'; |
|
|
|
|
|
|
|
|
|
echo '<td>'; |
|
|
|
|
if ($myrow['calendar_type'] == 'course') { |
|
|
|
|
if ($myrow['end_date']<>'0000-00-00 00:00:00') { |
|
|
|
|
echo get_lang('EndTimeWindow').": "; |
|
|
|
|
echo api_convert_and_format_date($myrow['end_date']); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2165,7 +2182,6 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
// a coach can only delete an element belonging to his session |
|
|
|
|
$mylink = api_get_self().'?'.api_get_cidreq().'&origin='.Security::remove_XSS($_GET['origin']).'&id='.$myrow['id'].'&'; |
|
|
|
|
echo '<td align="center">'; |
|
|
|
|
|
|
|
|
|
// edit |
|
|
|
|
echo '<a href="'.$mylink.api_get_cidreq()."&sort=asc&toolgroup=".Security::remove_XSS($_GET['toolgroup']).'&action=edit&id_attach='.$attachment_list['id'].'" title="'.get_lang("ModifyCalendarItem").'">'; |
|
|
|
|
echo Display::return_icon('edit.png', get_lang('ModifyCalendarItem'),'',22)."</a>"; |
|
|
|
@ -2183,56 +2199,21 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
$next_action = 1; |
|
|
|
|
} |
|
|
|
|
echo '<a href="'.$mylink.api_get_cidreq().'&sort=asc&toolgroup='.Security::remove_XSS($_GET['toolgroup']).'&action=showhide&next_action='.$next_action.'" title="'.$text_visibility.'">'.Display::return_icon($image_visibility.'.png', $text_visibility,'',22).'</a> '; |
|
|
|
|
|
|
|
|
|
echo "<a href=\"".$mylink.api_get_cidreq()."&sort=asc&toolgroup=".Security::remove_XSS($_GET['toolgroup'])."&action=delete\" onclick=\"javascript:if(!confirm('".addslashes(api_htmlentities(get_lang("ConfirmYourChoice"),ENT_QUOTES,$charset))."')) return false;\" title=\"".get_lang("Delete")."\"> "; |
|
|
|
|
echo Display::return_icon('delete.png', get_lang('Delete'),'',22)." </a>"; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!$is_repeated && (api_is_allowed_to_edit(false,true) OR (api_get_course_setting('allow_user_edit_agenda') && !api_is_anonymous()))) { |
|
|
|
|
if( ! (api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $myrow['id'] ) ) ) { |
|
|
|
|
// a coach can only delete an element belonging to his session |
|
|
|
|
$td_colspan= '<td colspan="3">'; |
|
|
|
|
} else { |
|
|
|
|
$td_colspan= '<td colspan="2">'; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$td_colspan= '<td colspan="2">'; |
|
|
|
|
} |
|
|
|
|
$mylink = 'ical_export.php?'.api_get_cidreq().'&type=course&id='.$myrow['id']; |
|
|
|
|
//echo '<a class="ical_export" href="'.$mylink.'&class=confidential" title="'.get_lang('ExportiCalConfidential').'">'.Display::return_icon($export_icon_high, get_lang('ExportiCalConfidential')).'</a> '; |
|
|
|
|
//echo '<a class="ical_export" href="'.$mylink.'&class=private" title="'.get_lang('ExportiCalPrivate').'">'.Display::return_icon($export_icon_low, get_lang('ExportiCalPrivate')).'</a> '; |
|
|
|
|
//echo '<a class="ical_export" href="'.$mylink.'&class=public" title="'.get_lang('ExportiCalPublic').'">'.Display::return_icon($export_icon, get_lang('ExportiCalPublic')).'</a> '; |
|
|
|
|
echo '<a href="#" onclick="javascript:win_print=window.open(\'print.php?id='.$myrow['id'].'\',\'popup\',\'left=100,top=100,width=700,height=500,scrollbars=1,resizable=0\'); win_print.focus(); return false;">'.Display::return_icon('printer.png', get_lang('Print'),'',22).'</a> '; |
|
|
|
|
echo '</td>'; |
|
|
|
|
} else { |
|
|
|
|
echo '<td align="center">'; |
|
|
|
|
echo '</td>'; |
|
|
|
|
} |
|
|
|
|
echo '</tr>'; |
|
|
|
|
|
|
|
|
|
/* display: the content */ |
|
|
|
|
$content = $myrow['content']; |
|
|
|
|
$content = make_clickable($content); |
|
|
|
|
$content = text_filter($content); |
|
|
|
|
|
|
|
|
|
echo '<tr class="row_even">'; |
|
|
|
|
echo '<td colspan="3">'; |
|
|
|
|
echo $content; |
|
|
|
|
// show attachment list |
|
|
|
|
if (!empty($attachment_list)) { |
|
|
|
|
$realname=$attachment_list['path']; |
|
|
|
|
$user_filename=$attachment_list['filename']; |
|
|
|
|
$full_file_name = 'download.php?file='.$realname; |
|
|
|
|
echo Display::return_icon('attachment.gif',get_lang('Attachment')); |
|
|
|
|
echo '<a href="'.$full_file_name.''; |
|
|
|
|
echo ' "> '.$user_filename.' </a>'; |
|
|
|
|
echo '<span class="forum_attach_comment" >'.$attachment_list['comment'].'</span>'; |
|
|
|
|
if (api_is_allowed_to_edit()) { |
|
|
|
|
echo ' <a href="'.api_get_self().'?'.api_get_cidreq().'&origin='.Security::remove_XSS($_GET['origin']).'&action=delete_attach&id_attach='.$attachment_list['id'].'" onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang("ConfirmYourChoice"),ENT_QUOTES,$charset)).'\')) return false;">'.Display::return_icon('delete.png',get_lang('Delete'),'',22).'</a><br />'; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
echo '</td></tr>'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* display: the added resources */ |
|
|
|
|
if (check_added_resources("Agenda", $myrow["id"])) { |
|
|
|
@ -2247,15 +2228,17 @@ function display_agenda_items($select_month, $select_year) { |
|
|
|
|
} |
|
|
|
|
$event_list.=$myrow['id'].','; |
|
|
|
|
$counter++; |
|
|
|
|
/* display: jump-to-top icon */ |
|
|
|
|
echo '<tr>'; |
|
|
|
|
|
|
|
|
|
echo '<td colspan="3">'; |
|
|
|
|
if ($is_repeated) { |
|
|
|
|
echo get_lang('RepeatedEvent'),' <a href="',api_get_self(),'?',api_get_cidreq(),'&agenda_id=',$myrow['parent_event_id'],'" alt="',get_lang('RepeatedEventViewOriginalEvent'),'">',get_lang('RepeatedEventViewOriginalEvent'),'</a>'; |
|
|
|
|
} |
|
|
|
|
echo "<a href=\"#top\">".Display::return_icon('top.gif', get_lang('Top'))."</a></td></tr>"; |
|
|
|
|
echo "</table><br /><br />"; |
|
|
|
|
echo '</td>'; |
|
|
|
|
echo "</tr>"; |
|
|
|
|
|
|
|
|
|
} // end while ($myrow=Database::fetch_array($result)) |
|
|
|
|
echo "</table><br /><br />"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(!empty($event_list)) { |
|
|
|
|
$event_list=api_substr($event_list,0,-1); |
|
|
|
@ -4310,8 +4293,8 @@ function agenda_add_item($course_info, $title, $content, $db_start_date, $db_end |
|
|
|
|
|
|
|
|
|
// store in last_tooledit (first the groups, then the users |
|
|
|
|
$done = false; |
|
|
|
|
if ((!is_null($to))or (!empty($_SESSION['toolgroup']))) // !is_null($to): when no user is selected we send it to everyone |
|
|
|
|
{ |
|
|
|
|
if ((!is_null($to))or (!empty($_SESSION['toolgroup']))) { |
|
|
|
|
// !is_null($to): when no user is selected we send it to everyone |
|
|
|
|
$send_to=separate_users_groups($to); |
|
|
|
|
// storing the selected groups |
|
|
|
|
if (is_array($send_to['groups'])) { |
|
|
|
|