1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015 |
- <?php
- $setting_agenda_link = 'coursecode';
- require_once api_get_path(LIBRARY_PATH).'groupmanager.lib.php';
- function get_myagendaitems($user_id, $courses_dbs, $month, $year) {
- global $setting_agenda_link;
- $user_id = intval($user_id);
- $items = array();
- $my_list = array();
-
-
- foreach ($courses_dbs as $key => $array_course_info) {
-
- $TABLEAGENDA = Database :: get_course_table(TABLE_AGENDA);
- $TABLE_ITEMPROPERTY = Database :: get_course_table(TABLE_ITEM_PROPERTY);
- $group_memberships = GroupManager :: get_group_ids($array_course_info["real_id"], $user_id);
- $course_user_status = CourseManager::get_user_in_course_status($user_id, $array_course_info["code"]);
-
- if ($course_user_status == '1') {
-
- $sqlquery = "SELECT DISTINCT agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref
- FROM ".$TABLEAGENDA." agenda,
- ".$TABLE_ITEMPROPERTY." ip
- WHERE agenda.id = ip.ref
- AND MONTH(agenda.start_date)='".$month."'
- AND YEAR(agenda.start_date)='".$year."'
- AND ip.tool='".TOOL_CALENDAR_EVENT."'
- AND ip.visibility='1'
- GROUP BY agenda.id
- ORDER BY start_date ";
- } else {
-
- if (is_array($group_memberships) && count($group_memberships)>0) {
- $sqlquery = "SELECT agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref
- FROM ".$TABLEAGENDA." agenda,
- ".$TABLE_ITEMPROPERTY." ip
- WHERE agenda.id = ip.ref
- AND MONTH(agenda.start_date)='".$month."'
- AND YEAR(agenda.start_date)='".$year."'
- AND ip.tool='".TOOL_CALENDAR_EVENT."'
- AND ( ip.to_user_id='".$user_id."' OR ip.to_group_id IN (0, ".implode(", ", $group_memberships).") )
- AND ip.visibility='1'
- ORDER BY start_date ";
- } else {
- $sqlquery = "SELECT agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref
- FROM ".$TABLEAGENDA." agenda,
- ".$TABLE_ITEMPROPERTY." ip
- WHERE agenda.id = ip.ref
- AND MONTH(agenda.start_date)='".$month."'
- AND YEAR(agenda.start_date)='".$year."'
- AND ip.tool='".TOOL_CALENDAR_EVENT."'
- AND ( ip.to_user_id='".$user_id."' OR ip.to_group_id='0')
- AND ip.visibility='1'
- ORDER BY start_date ";
- }
- }
- $result = Database::query($sqlquery);
-
- while ($item = Database::fetch_array($result, 'ASSOC')) {
- $agendaday = -1;
- if ($item['start_date'] != '0000-00-00 00:00:00') {
- $item['start_date'] = api_get_local_time($item['start_date']);
- $item['start_date_tms'] = api_strtotime($item['start_date']);
- $agendaday = date("j", $item['start_date_tms']);
- }
- if ($item['end_date'] != '0000-00-00 00:00:00') {
- $item['end_date'] = api_get_local_time($item['end_date']);
- }
-
- $url = api_get_path(WEB_CODE_PATH)."calendar/agenda.php?cidReq=".urlencode($array_course_info["code"])."&day=$agendaday&month=$month&year=$year#$agendaday";
-
- $item['url'] = $url;
- $item['course_name'] = $array_course_info['title'];
- $item['calendar_type'] = 'course';
- $item['course_id'] = $array_course_info['course_id'];
-
- $my_list[$agendaday][] = $item;
- }
- }
-
-
- $agendaitems = array ();
- while (list ($agendaday, $tmpitems) = each($items)) {
- if(!isset($agendaitems[$agendaday])) {
- $agendaitems[$agendaday] = '';
- }
- sort($tmpitems);
- while (list ($key, $val) = each($tmpitems)) {
- $agendaitems[$agendaday] .= $val;
- }
- }
- return $my_list;
- }
- function display_mymonthcalendar($user_id, $agendaitems, $month, $year, $weekdaynames = array(), $monthName, $show_content = true) {
- global $DaysShort, $course_path;
-
- $numberofdays = array (0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
- if (($year % 400 == 0) or ($year % 4 == 0 and $year % 100 <> 0))
- $numberofdays[2] = 29;
-
- $dayone = getdate(mktime(0, 0, 0, $month, 1, $year));
-
- $startdayofweek = $dayone['wday'] <> 0 ? ($dayone['wday'] - 1) : 6;
- $g_cc = (isset($_GET['courseCode'])?$_GET['courseCode']:'');
-
- $prev_icon = Display::return_icon('action_prev.png',get_lang('Previous'));
- $next_icon = Display::return_icon('action_next.png',get_lang('Next'));
-
- $next_month = ($month == 1 ? 12 : $month -1);
- $prev_month = ($month == 12 ? 1 : $month +1);
-
- $next_year = ($month == 1 ? $year -1 : $year);
- $prev_year = ($month == 12 ? $year +1 : $year);
-
- if ($show_content) {
- $back_url = Display::url($prev_icon, api_get_self()."?coursePath=".urlencode($course_path)."&courseCode=".Security::remove_XSS($g_cc)."&action=view&view=month&month=".$next_month."&year=".$next_year);
- $next_url = Display::url($next_icon, api_get_self()."?coursePath=".urlencode($course_path)."&courseCode=".Security::remove_XSS($g_cc)."&action=view&view=month&month=".$prev_month."&year=".$prev_year);
- } else {
- $back_url = Display::url($prev_icon, '', array('onclick'=>"load_calendar('".$user_id."','".$next_month."', '".$next_year."'); "));
- $next_url = Display::url($next_icon, '', array('onclick'=>"load_calendar('".$user_id."','".$prev_month."', '".$prev_year."'); "));
- }
- echo '<table id="agenda_list"><tr>';
- echo '<th width="10%">'.$back_url.'</th>';
- echo '<th width="80%" colspan="5"><br /><h3>'.$monthName." ".$year.'</h3></th>';
- echo '<th width="10%">'.$next_url.'</th>';
-
- echo '</tr>';
- echo '<tr>';
- for ($ii = 1; $ii < 8; $ii ++) {
- echo '<td class="weekdays">'.$DaysShort[$ii % 7].'</td>';
- }
- echo '</tr>';
-
- $curday = -1;
- $today = getdate();
- while ($curday <= $numberofdays[$month]) {
- echo "<tr>";
- for ($ii = 0; $ii < 7; $ii ++) {
- if (($curday == -1) && ($ii == $startdayofweek)) {
- $curday = 1;
- }
- if (($curday > 0) && ($curday <= $numberofdays[$month])) {
- $bgcolor = $class = 'class="days_week"';
- $dayheader = Display::div($curday, array('class'=>'agenda_day'));
- if (($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) {
- $class = "class=\"days_today\" style=\"width:10%;\"";
- }
-
- echo "<td ".$class.">".$dayheader;
-
- if (!empty($agendaitems[$curday])) {
- $items = $agendaitems[$curday];
- $items = msort($items, 'start_date_tms');
-
- foreach($items as $value) {
- $value['title'] = Security::remove_XSS($value['title']);
- $start_time = api_format_date($value['start_date'], TIME_NO_SEC_FORMAT);
- $end_time = '';
-
- if (!empty($value['end_date']) && $value['end_date'] != '0000-00-00 00:00:00') {
- $end_time = '- <i>'.api_format_date($value['end_date'], DATE_TIME_FORMAT_LONG).'</i>';
- }
- $complete_time = '<i>'.api_format_date($value['start_date'], DATE_TIME_FORMAT_LONG).'</i> '.$end_time;
- $time = '<i>'.$start_time.'</i>';
- switch($value['calendar_type']) {
- case 'personal':
- $bg_color = '#D0E7F4';
- $icon = Display::return_icon('user.png', get_lang('MyAgenda'), array(), 22);
- break;
- case 'global':
- $bg_color = '#FFBC89';
- $icon = Display::return_icon('view_remove.png', get_lang('GlobalEvent'), array(), 22);
- break;
- case 'course':
- $bg_color = '#CAFFAA';
- $icon_name = 'course.png';
- if (!empty($value['session_id'])) {
- $icon_name = 'session.png';
- }
- if ($show_content) {
- $icon = Display::url(Display::return_icon($icon_name, $value['course_name'].' '.get_lang('Course'), array(), 22), $value['url']);
- } else {
- $icon = Display::return_icon($icon_name, $value['course_name'].' '.get_lang('Course'), array(), 22);
- }
- break;
- default:
- break;
- }
-
- $result = '<div class="rounded_div_agenda" style="background-color:'.$bg_color.';">';
-
- if ($show_content) {
-
-
- $icon = Display::div($icon, array('style'=>'float:right'));
- $link = $value['calendar_type'].'_'.$value['id'].'_'.$value['course_id'].'_'.$value['session_id'];
-
-
- $url = Display::url(cut($value['title'], 40), '#', array('id'=>$link, 'class'=>'opener'));
- $result .= $time.' '.$icon.' '.Display::div($url);
-
-
- $content = Display::div($icon.Display::tag('h2', $value['course_name']).'<hr />'.Display::tag('h3', $value['title']).$complete_time.'<hr />'.Security::remove_XSS($value['content']));
-
-
- $result .= Display::div($content, array('id'=>'main_'.$link, 'class' => 'dialog', 'style' => 'display:none'));
- $result .= '</div>';
- echo $result;
-
- } else {
- echo $result .= $icon.'</div>';
- }
- }
- }
- echo "</td>";
- $curday ++;
- } else {
- echo "<td></td>";
- }
- }
- echo "</tr>";
- }
- echo "</table>";
- }
- function display_myminimonthcalendar($agendaitems, $month, $year, $monthName) {
- global $DaysShort,$course_path;
-
- $numberofdays = array (0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
- if (($year % 400 == 0) or ($year % 4 == 0 and $year % 100 <> 0))
- $numberofdays[2] = 29;
-
- $dayone = getdate(mktime(0, 0, 0, $month, 1, $year));
-
- $startdayofweek = $dayone['wday'] <> 0 ? ($dayone['wday'] - 1) : 6;
- $g_cc = (isset($_GET['courseCode'])?$_GET['courseCode']:'');
- $backwardsURL = api_get_self()."?coursePath=".Security::remove_XSS($course_path)."&courseCode=".Security::remove_XSS($g_cc)."&month=". ($month == 1 ? 12 : $month -1)."&year=". ($month == 1 ? $year -1 : $year);
- $forewardsURL = api_get_self()."?coursePath=".Security::remove_XSS($course_path)."&courseCode=".Security::remove_XSS($g_cc)."&month=". ($month == 12 ? 1 : $month +1)."&year=". ($month == 12 ? $year +1 : $year);
- echo "<table class=\"data_table\">", "<tr>", "<th width=\"10%\"><a href=\"", $backwardsURL, "\">".Display::return_icon('action_prev.png',get_lang('Previous'))."</a></th>";
- echo "<th width=\"80%\" colspan=\"5\">", $monthName, " ", $year, "</th>", "<th width=\"10%\"><a href=\"", $forewardsURL, "\">".Display::return_icon('action_next.png',get_lang('Next'))."</a></th>", "</tr>";
- echo "<tr>";
- for ($ii = 1; $ii < 8; $ii ++)
- {
- echo "<td class=\"weekdays\">", $DaysShort[$ii % 7], "</td>";
- }
- echo "</tr>";
- $curday = -1;
- $today = getdate();
- while ($curday <= $numberofdays[$month])
- {
- echo "<tr>";
- for ($ii = 0; $ii < 7; $ii ++) {
- if (($curday == -1) && ($ii == $startdayofweek))
- {
- $curday = 1;
- }
- if (($curday > 0) && ($curday <= $numberofdays[$month])) {
- $bgcolor = $ii < 5 ? $class = 'class="days_week"' : $class = 'class="days_weekend"';
- $dayheader = "$curday";
- if (($curday == $today['mday']) && ($year == $today['year']) && ($month == $today['mon'])) {
- $dayheader = "$curday";
- $class = "class=\"days_today\"";
- }
- echo "<td ".$class.">";
- if (!empty($agendaitems[$curday])) {
- echo "<a href=\"".api_get_self()."?action=view&view=day&day=".$curday."&month=".$month."&year=".$year."\">".$dayheader."</a>";
- } else {
- echo $dayheader;
- }
-
- echo "</td>";
- $curday ++;
- }
- else
- {
- echo "<td> </td>";
- }
- }
- echo "</tr>";
- }
- echo "</table>";
- }
- function show_new_personal_item_form($id = "") {
- global $year, $MonthsLong;
- $tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA);
-
-
-
- $current_date = api_strtotime(api_get_local_time());
-
- $year = date('Y', $current_date);
- $month = date('m', $current_date);
- $day = date('d', $current_date);
- $hours = date('H', $current_date);
- $minutes = date('i', $current_date);
-
-
-
- $content=stripslashes($content);
- $title=stripslashes($title);
-
-
-
- if (strlen($id) > 0 && $id != strval(intval($id))) {
- return false;
- }
- if ($id != "") {
- $sql = "SELECT date, title, text FROM ".$tbl_personal_agenda." WHERE user='".api_get_user_id()."' AND id='".$id."'";
- $result = Database::query($sql);
- $aantal = Database::num_rows($result);
- if ($aantal != 0) {
- $row = Database::fetch_array($result);
- $row['date'] = api_get_local_time($row['date']);
- $year = substr($row['date'], 0, 4);
- $month = substr($row['date'], 5, 2);
- $day = substr($row['date'], 8, 2);
- $hours = substr($row['date'], 11, 2);
- $minutes= substr($row['date'], 14, 2);
-
- $title = $row['title'];
- $content= $row['text'];
- } else {
- return false;
- }
- }
- echo '<form method="post" action="myagenda.php?action=add_personal_agenda_item&id='.$id.'" name="newedit_form">';
- echo '<div id="newedit_form">';
- echo '<h2>';
- echo ($_GET['action'] == 'edit_personal_agenda_item') ? get_lang("ModifyPersonalCalendarItem") : get_lang("AddPersonalCalendarItem");
- echo '</h2>';
- echo '<div>';
- echo '<br/>';
- echo ''.get_lang("Date").': ';
-
- echo '<select name="frm_day">';
-
-
- for ($i = 1; $i <= 31; $i ++) {
-
- if ($i <= 9){
- $value = "0".$i;
- } else {
- $value = $i;
- }
-
- if ($value == $day) {
- echo '<option value='.$value.' selected>'.$i.'</option>';
- } else {
- echo '<option value='.$value.'>'.$i.'</option>';
- }
- }
- echo '</select>';
-
- echo '<!-- month: january -> december -->';
- echo '<select name="frm_month">';
- for ($i = 1; $i <= 12; $i ++) {
-
- if ($i <= 9) {
- $value = "0".$i;
- } else {
- $value = $i;
- }
-
- if ($value == $month) {
- echo '<option value='.$value.' selected>'.$MonthsLong[$i -1].'</option>';
- } else {
- echo '<option value='.$value.'>'.$MonthsLong[$i -1].'</option>';
- }
- }
- echo '</select>';
-
- echo '<!-- year -->';
- echo '<select name="frm_year">';
- echo '<option value='. ($year -1).'>'. ($year -1).'</option>';
- echo '<option value='.$year.' selected>'.$year.'</option>';
- for ($i = 1; $i <= 5; $i ++)
- {
- $value = $year + $i;
- echo '<option value='.$value.'>'.$value.'</option>';
- }
- echo '</select> ';
- echo "<a title=\"Kalender\" href=\"javascript:openCalendar('newedit_form', 'frm_')\">".Display::return_icon('calendar_select.gif', get_lang('Select'), array ('style' => 'vertical-align: middle;'))."</a>";
- echo ' ';
-
- echo '<!-- time: hour -->';
- echo get_lang("Time").': ';
- echo '<select name="frm_hour">';
- for ($i = 1; $i <= 24; $i ++) {
-
- if ($i <= 9) {
- $value = "0".$i;
- } else {
- $value = $i;
- }
-
- if ($hours == $value) {
- echo '<option value='.$value.' selected>'.$value.'</option>';
- } else {
- echo '<option value='.$value.'> '.$value.' </option>';
- }
- }
- echo '</select>';
-
- echo "<select name=\"frm_minute\">";
- echo "<option value=\"".$minutes."\">".$minutes."</option>";
- echo "<option value=\"00\">00</option>";
- echo "<option value=\"05\">05</option>";
- echo "<option value=\"10\">10</option>";
- echo "<option value=\"15\">15</option>";
- echo "<option value=\"20\">20</option>";
- echo "<option value=\"25\">25</option>";
- echo "<option value=\"30\">30</option>";
- echo "<option value=\"35\">35</option>";
- echo "<option value=\"40\">40</option>";
- echo "<option value=\"45\">45</option>";
- echo "<option value=\"50\">50</option>";
- echo "<option value=\"55\">55</option>";
- echo '</select>';
- echo '</div><br/>';
-
- echo '<div>';
- echo ''.get_lang('Title').' : <input type="text" name="frm_title" size="50" value="'.$title.'" />';
- echo '</div>';
-
- echo '<br /><div class="formw">';
-
- require_once api_get_path(LIBRARY_PATH) . "/fckeditor/fckeditor.php";
- $oFCKeditor = new FCKeditor('frm_content') ;
- $oFCKeditor->Width = '80%';
- $oFCKeditor->Height = '200';
- if(!api_is_allowed_to_edit(null,true)) {
- $oFCKeditor->ToolbarSet = 'AgendaStudent';
- } else {
- $oFCKeditor->ToolbarSet = 'Agenda';
- }
- $oFCKeditor->Value = $content;
- $return = $oFCKeditor->CreateHtml();
- echo $return;
-
- echo '</div>';
-
- echo '<div>';
- echo '<br /><button type="submit" class="add" name="Submit" value="'.get_lang('AddEvent').'" >'.get_lang('AddEvent').'</button>';
- echo '</div>';
- echo '</div>';
- echo '</form>';
- }
- function store_personal_item($day, $month, $year, $hour, $minute, $title, $content, $id = "") {
- $tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA);
-
- $date = $year."-".$month."-".$day." ".$hour.":".$minute.":00";
-
- if (!empty($date)) {
- $date = api_get_utc_datetime($date);
- }
-
- $date = Database::escape_string($date);
- $title = Database::escape_string($title);
- $content = Database::escape_string($content);
- $id = intval($id);
-
- if (!empty($id)) {
-
- $sql = "UPDATE ".$tbl_personal_agenda." SET user='".api_get_user_id()."', title='".$title."', text='".$content."', date='".$date."' WHERE id= ".$id;
- } else {
-
- $sql = "INSERT INTO $tbl_personal_agenda (user, title, text, date) VALUES ('".api_get_user_id()."','$title', '$content', '$date')";
- }
- $result = Database::query($sql);
- }
- function get_all_courses_of_user() {
- $TABLECOURS = Database :: get_main_table(TABLE_MAIN_COURSE);
- $TABLECOURSUSER = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_session_course_user= Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
- $sql_select_courses = "SELECT c.code k, c.visual_code vc, c.title i, c.tutor_name t,
- c.db_name db, c.directory dir, '5' as status
- FROM $TABLECOURS c, $tbl_session_course_user srcu
- WHERE srcu.id_user='".api_get_user_id()."'
- AND c.code=srcu.course_code
- UNION
- SELECT c.code k, c.visual_code vc, c.title i, c.tutor_name t,
- c.db_name db, c.directory dir, cru.status status
- FROM $TABLECOURS c, $TABLECOURSUSER cru
- WHERE cru.user_id='".api_get_user_id()."'
- AND c.code=cru.course_code";
- $result = Database::query($sql_select_courses);
- while ($row = Database::fetch_array($result)) {
-
- $courses[] = array ("db" => $row['db'], "code" => $row['k'], "visual_code" => $row['vc'], "title" => $row['i'], "directory" => $row['dir'], "status" => $row['status']);
- }
- return $courses;
- }
- function get_courses_of_user() {
- $TABLECOURS = Database :: get_main_table(TABLE_MAIN_COURSE);
- $TABLECOURSUSER = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
- $sql_select_courses = "SELECT course.code k, course.visual_code vc,
- course.title i, course.tutor_name t, course.db_name db, course.directory dir, course_rel_user.status status
- FROM $TABLECOURS course,
- $TABLECOURSUSER course_rel_user
- WHERE course.code = course_rel_user.course_code
- AND course_rel_user.user_id = '".api_get_user_id()."'";
- $result = Database::query($sql_select_courses);
- while ($row = Database::fetch_array($result))
- {
-
- $courses[] = array ("db" => $row['db'], "code" => $row['k'], "visual_code" => $row['vc'], "title" => $row['i'], "directory" => $row['dir'], "status" => $row['status']);
- }
- return $courses;
- }
- function get_personal_agenda_items($user_id, $agendaitems, $day = "", $month = "", $year = "", $week = "", $type) {
- $tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA);
- $user_id = intval($user_id);
-
-
- if ($type == "month_view" or $type == "") {
-
- $sql = "SELECT * FROM ".$tbl_personal_agenda." WHERE user='".$user_id."' and MONTH(date)='".$month."' AND YEAR(date) = '".$year."' ORDER BY date ASC";
- }
-
-
-
- if ($type == "week_view") {
- $start_end_day_of_week = calculate_start_end_of_week($week, $year);
- $start_day = $start_end_day_of_week['start']['day'];
- $start_month = $start_end_day_of_week['start']['month'];
- $start_year = $start_end_day_of_week['start']['year'];
- $end_day = $start_end_day_of_week['end']['day'];
- $end_month = $start_end_day_of_week['end']['month'];
- $end_year = $start_end_day_of_week['end']['year'];
-
- $start_filter = $start_year."-".$start_month."-".$start_day." 00:00:00";
- $start_filter = api_get_utc_datetime($start_filter);
- $end_filter = $end_year."-".$end_month."-".$end_day." 23:59:59";
- $end_filter = api_get_utc_datetime($end_filter);
- $sql = " SELECT * FROM ".$tbl_personal_agenda." WHERE user='".$user_id."' AND date>='".$start_filter."' AND date<='".$end_filter."'";
- }
-
- if ($type == "day_view") {
-
-
- $start_filter = $year."-".$month."-".$day." 00:00:00";
- $start_filter = api_get_utc_datetime($start_filter);
- $end_filter = $year."-".$month."-".$day." 23:59:59";
- $end_filter = api_get_utc_datetime($end_filter);
- $sql = " SELECT * FROM ".$tbl_personal_agenda." WHERE user='".$user_id."' AND date>='".$start_filter."' AND date<='".$end_filter."'";
- }
- $result = Database::query($sql);
- while ($item = Database::fetch_array($result, 'ASSOC')) {
-
- $time_minute = api_convert_and_format_date($item['date'], TIME_NO_SEC_FORMAT);
- $item['date'] = api_get_local_time($item['date']);
- $item['start_date_tms'] = api_strtotime($item['date']);
- $item['content'] = $item['text'];
-
-
- $agenda_db_date = explode(" ", $item['date']);
- $date = $agenda_db_date[0];
- $time = $agenda_db_date[1];
-
- $agendadate = explode("-", $item['date']);
- $year = intval($agendadate[0]);
- $month = intval($agendadate[1]);
- $day = intval($agendadate[2]);
-
- $agendatime = explode(":", $time);
-
- $hour = $agendatime[0];
- $minute = $agendatime[1];
- $second = $agendatime[2];
-
- if ($type == 'month_view') {
- $item['calendar_type'] = 'personal';
- $item['start_date'] = $item['date'];
- $agendaitems[$day][] = $item;
- continue;
- }
-
-
- if ($item['course'] <> "") {
- $url = api_get_path(WEB_CODE_PATH)."calendar/agenda.php?cidReq=".urlencode($item['course'])."&day=$day&month=$month&year=$year#$day";
- $course_link = "<a href=\"$url\" title=\"".$item['course']."\">".$item['course']."</a>";
- } else {
- $course_link = "";
- }
-
-
- if ($type !== "day_view") {
-
-
- $agendaitems[$day] .= "<div><i>$time_minute</i> $course_link <a href=\"myagenda.php?action=view&view=personal&day=$day&month=$month&year=$year&id=".$item['id']."#".$item['id']."\" class=\"personal_agenda\">".$item['title']."</a></div><br />";
- } else {
-
- $halfhour = 2 * $agendatime['0'];
- if ($agendatime['1'] >= '30') {
- $halfhour = $halfhour +1;
- }
-
-
- $agendaitems[$halfhour] .= "<div><i>$time_minute</i> $course_link <a href=\"myagenda.php?action=view&view=personal&day=$day&month=$month&year=$year&id=".$item['id']."#".$item['id']."\" class=\"personal_agenda\">".$item['title']."</a></div>";
- }
- }
- return $agendaitems;
- }
- function get_personal_agenda_item($id) {
- $tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA);
- $id = Database::escape_string($id);
-
- $user = api_get_user_id();
- $sql = " SELECT * FROM ".$tbl_personal_agenda." WHERE id=".$id." AND user = ".$user;
- $result = Database::query($sql);
- if(Database::num_rows($result)==1) {
- $item = Database::fetch_array($result);
- } else {
- $item = null;
- }
- return $item;
- }
- function show_personal_agenda() {
- global $MonthsLong, $charset;
- $tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA);
-
- $sql = "SELECT * FROM ".$tbl_personal_agenda." WHERE user='".api_get_user_id()."' ORDER BY date DESC";
- $result = Database::query($sql);
-
- $month_bar = "";
-
- if (!isset($_GET['day']) AND !isset($_GET['month']) AND !isset($_GET['year'])) {
- $today = getdate();
- $year = $today['year'];
- $month = $today['mon'];
- $day = $today['mday'];
- }
- $export_icon = 'export.png';
- $export_icon_low = 'export_low_fade.png';
- $export_icon_high = 'export_high_fade.png';
-
- 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('StartTimeWindow'));
- $th .= Display::tag('th', get_lang('Modify'));
-
- echo Display::tag('tr', $th);
- if (Database::num_rows($result) > 0) {
- $counter = 0;
- while ($myrow = Database::fetch_array($result)) {
-
- if ($month_bar != date("m", strtotime($myrow["date"])).date("Y", strtotime($myrow["date"]))) {
- $month_bar = date("m", strtotime($myrow["date"])).date("Y", strtotime($myrow["date"]));
-
- }
-
- $db_date = (int) date("d", strtotime($myrow["date"])).date("n", strtotime($myrow["date"])).date("Y", strtotime($myrow["date"]));
-
- $class = 'row_even';
- if ($counter % 2) {
- $class = 'row_odd';
- }
-
- echo '<tr class="'.$class.'">';
- echo '<td>';
-
- echo $myrow['title'];
- echo "</td>";
-
- $content = $myrow['text'];
- echo "<td>";
- echo $content;
- echo "</td>";
-
-
- echo '<td>';
-
-
-
- $myrow["date"] = api_get_local_time($myrow["date"]);
- echo api_format_date($myrow["date"], DATE_TIME_FORMAT_LONG);
- echo "</td>";
-
-
-
-
-
-
-
-
- echo "<td>";
- echo "<a href=\"myagenda.php?action=edit_personal_agenda_item&id=".$myrow['id']."\">".Display::return_icon('edit.png', get_lang('Edit'), array(), 22)."</a> ";
- echo "<a href=\"".api_get_self()."?action=delete&id=".$myrow['id']."\" onclick=\"javascript:if(!confirm('".addslashes(api_htmlentities(get_lang('ConfirmYourChoice'),ENT_QUOTES,$charset))."')) return false;\">".Display::return_icon('delete.png', get_lang('Delete'), array(), 22)."</a>";
- echo "</td></tr>";
- $counter++;
- }
- } else {
- echo '<tr><td colspan="2">'.get_lang('NoAgendaItems').'</td></tr>';
- }
- echo "</table>";
- }
- function show_simple_personal_agenda($user_id) {
- global $MonthsLong, $charset;
- $tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA);
-
- $sql = "SELECT * FROM ".$tbl_personal_agenda." WHERE user='".$user_id."' ORDER BY date DESC";
- $result = Database::query($sql);
-
- $month_bar = "";
-
- if (!$_GET['day'] AND !$_GET['month'] AND !$_GET['year']) {
- $today = getdate();
- $year = $today['year'];
- $month = $today['mon'];
- $day = $today['mday'];
- }
- $export_icon = 'export.png';
- $export_icon_low = 'export_low_fade.png';
- $export_icon_high = 'export_high_fade.png';
- $content = '';
-
- if (Database::num_rows($result) > 0) {
- while ($myrow = Database::fetch_array($result)) {
-
- if ($month_bar != date("m", strtotime($myrow["date"])).date("Y", strtotime($myrow["date"]))) {
- $month_bar = date("m", strtotime($myrow["date"])).date("Y", strtotime($myrow["date"]));
- $content.= $MonthsLong[date("n", strtotime($myrow["date"])) - 1]." ".date("Y", strtotime($myrow["date"]));
- }
-
- $db_date = (int) date("d", strtotime($myrow["date"])).date("n", strtotime($myrow["date"])).date("Y", strtotime($myrow["date"]));
- if ($_GET["day"].$_GET["month"].$_GET["year"] <> $db_date) {
- $style = "data";
- $text_style = "text";
- } else {
- $style = "datanow";
- $text_style = "text";
- }
-
-
- $content.= date("d", strtotime($myrow["date"]))." ".$MonthsLong[date("n", strtotime($myrow["date"])) - 1]." ".date("Y", strtotime($myrow["date"]))." ";
- $content.= strftime(get_lang("timeNoSecFormat"), strtotime($myrow["date"]));
-
- $content.= '<br />';
- $content.= $myrow['title'];
- $content.= '<br />';
-
-
- return $content;
- }
- } else {
- return $content;
- }
- }
- function delete_personal_agenda($id) {
- $tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA);
- if ($id != strval(intval($id))) {
- return false;
- }
- if ($id <> '')
- {
- $sql = "SELECT * FROM ".$tbl_personal_agenda." WHERE user='".api_get_user_id()."' AND id='".$id."'";
- $result = Database::query($sql);
- $aantal = Database::num_rows($result);
- if ($aantal <> 0)
- {
- $sql = "DELETE FROM ".$tbl_personal_agenda." WHERE user='".api_get_user_id()."' AND id='".$id."'";
- $result = Database::query($sql);
- }
- }
- }
- function get_personal_agenda_items_between_dates($user_id, $date_start='', $date_end='') {
- $items = array ();
- if ($user_id != strval(intval($user_id))) { return $items; }
- if (empty($date_start)) { $date_start = date('Y-m-d H:i:s');}
- if (empty($date_end)) { $date_end = date('Y-m-d H:i:s',mktime(0, 0, 0, date("m"), date("d"), date("Y")+1));}
- $expr = '/\d{4}-\d{2}-\d{2}\ \d{2}:\d{2}:\d{2}/';
- if(!preg_match($expr,$date_start)) { return $items; }
- if(!preg_match($expr,$date_end)) { return $items; }
-
- $courses = api_get_user_courses($user_id,false);
- require_once(api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
- foreach ($courses as $id => $course)
- {
- $c = api_get_course_info($course['code']);
-
- $t_a = Database :: get_course_table(TABLE_AGENDA, $course['db']);
- $t_ip = Database :: get_course_table(TABLE_ITEM_PROPERTY, $course['db']);
-
- $group_memberships = GroupManager :: get_group_ids($course['db'], $user_id);
-
- if ($course['status'] == '1') {
-
- $sqlquery = "SELECT ".
- " DISTINCT agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref ".
- " FROM ".$t_a." agenda, ".
- $t_ip." ip ".
- " WHERE agenda.id = ip.ref ".
- " AND agenda.start_date>='$date_start' ".
- " AND agenda.end_date<='$date_end' ".
- " AND ip.tool='".TOOL_CALENDAR_EVENT."' ".
- " AND ip.visibility='1' ".
- " GROUP BY agenda.id ".
- " ORDER BY start_date ";
- } else {
-
- if (is_array($group_memberships) && count($group_memberships)>0)
- {
- $sqlquery = "SELECT " .
- " agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref ".
- " FROM ".$t_a." agenda, ".
- $t_ip." ip ".
- " WHERE agenda.id = ip.ref ".
- " AND agenda.start_date>='$date_start' ".
- " AND agenda.end_date<='$date_end' ".
- " AND ip.tool='".TOOL_CALENDAR_EVENT."' ".
- " AND ( ip.to_user_id='".$user_id."' OR ip.to_group_id IN (0, ".implode(", ", $group_memberships).") ) ".
- " AND ip.visibility='1' ".
- " ORDER BY start_date ";
- } else {
- $sqlquery = "SELECT ".
- " agenda.*, ip.visibility, ip.to_group_id, ip.insert_user_id, ip.ref ".
- " FROM ".$t_a." agenda, ".
- $t_ip." ip ".
- " WHERE agenda.id = ip.ref ".
- " AND agenda.start_date>='$date_start' ".
- " AND agenda.end_date<='$date_end' ".
- " AND ip.tool='".TOOL_CALENDAR_EVENT."' ".
- " AND ( ip.to_user_id='".$user_id."' OR ip.to_group_id='0') ".
- " AND ip.visibility='1' ".
- " ORDER BY start_date ";
- }
- }
- $result = Database::query($sqlquery);
- while ($item = Database::fetch_array($result)) {
- $agendaday = date("j",strtotime($item['start_date']));
- $URL = api_get_path(WEB_PATH)."main/calendar/agenda.php?cidReq=".urlencode($course["code"])."&day=$agendaday&month=$month&year=$year#$agendaday";
- list($year,$month,$day,$hour,$min,$sec) = split('[-: ]',$item['start_date']);
- $start_date = $year.$month.$day.$hour.$min;
- list($year,$month,$day,$hour,$min,$sec) = split('[-: ]',$item['end_date']);
- $end_date = $year.$month.$day.$hour.$min;
- $items[] = array(
- 'datestart'=>$start_date,
- 'dateend'=>$end_date,
- 'title'=>$item['title'],
- 'link'=>$URL,
- 'coursetitle'=>$c['name'],
- );
- }
- }
- return $items;
- }
|