config error:'.__FILE__.'
set or '); } else { $orderKey = array('keyCourse', 'keyTools', 'keyTime'); } } /* Header Include the HTTP, HTML headers plus the top banner. */ if ($load_dirs) { $url = api_get_path(WEB_AJAX_PATH).'document.ajax.php?a=document_preview'; $folder_icon = api_get_path(WEB_IMG_PATH).'icons/22/folder.png'; $close_icon = api_get_path(WEB_IMG_PATH).'loading1.gif'; $htmlHeadXtra[] = ''; } Display :: display_header($nameTools); /* MAIN CODE */ /* PERSONAL COURSE LIST */ if (!isset ($maxValvas)) { $maxValvas = CONFVAL_maxValvasByCourse; // Maximum number of entries } if (!isset ($maxAgenda)) { $maxAgenda = CONFVAL_maxAgendaByCourse; // collected from each course } if (!isset ($maxCourse)) { $maxCourse = CONFVAL_maxTotalByCourse; // and displayed in summary. } $maxValvas = (int) $maxValvas; $maxAgenda = (int) $maxAgenda; $maxCourse = (int) $maxCourse; // 0 if invalid. if ($maxCourse > 0) { unset ($allentries); // We shall collect all summary$key1 entries in here: $toolsList['agenda']['name'] = get_lang('Agenda'); $toolsList['agenda']['path'] = api_get_path(WEB_CODE_PATH).'calendar/agenda.php?cidReq='; $toolsList['valvas']['name'] = get_lang('Valvas'); $toolsList['valvas']['path'] = api_get_path(WEB_CODE_PATH).'announcements/announcements.php?cidReq='; } echo '
'; // Start of content for logged in users. // Plugins for the my courses main area. echo '
'; api_plugin('mycourses_main'); echo '
'; /* System Announcements */ /* $announcement = isset($_GET['announcement']) ? $_GET['announcement'] : -1; $visibility = api_is_allowed_to_create_course() ? VISIBLE_TEACHER : VISIBLE_STUDENT; SystemAnnouncementManager :: display_announcements($visibility, $announcement);*/ if (!empty ($_GET['include']) && preg_match('/^[a-zA-Z0-9_-]*\.html$/',$_GET['include'])) { include './home/'.$_GET['include']; $pageIncluded = true; } else { /* DISPLAY COURSES */ // Compose a structured array of session categories, sessions and courses // for the current user. if (isset($_GET['history']) && intval($_GET['history']) == 1) { $courses_tree = UserManager::get_sessions_by_category(api_get_user_id(), true, true, true); if (empty($courses_tree[0]) && count($courses_tree) == 1) { $courses_tree = null; } } else { $courses_tree = UserManager::get_sessions_by_category(api_get_user_id(), true, false, true); } if (!empty($courses_tree)) { foreach ($courses_tree as $cat => $sessions) { $courses_tree[$cat]['details'] = SessionManager::get_session_category($cat); if ($cat == 0) { $courses_tree[$cat]['courses'] = CourseManager::get_courses_list_by_user_id(api_get_user_id(), false); } $courses_tree[$cat]['sessions'] = array_flip(array_flip($sessions)); if (count($courses_tree[$cat]['sessions']) > 0) { foreach ($courses_tree[$cat]['sessions'] as $k => $s_id) { $courses_tree[$cat]['sessions'][$k] = array('details' => SessionManager::fetch($s_id)); $courses_tree[$cat]['sessions'][$k]['courses'] = UserManager::get_courses_list_by_session(api_get_user_id(), $s_id); } } } } $list = ''; foreach ($personal_course_list as $my_course) { $thisCourseDbName = $my_course['db']; $thisCourseSysCode = $my_course['k']; $thisCoursePublicCode = $my_course['c']; $thisCoursePath = $my_course['d']; $sys_course_path = api_get_path(SYS_COURSE_PATH); $dbname = $my_course['k']; $status = array(); $status[$dbname] = $my_course['s']; $nbDigestEntries = 0; // Number of entries already collected. if ($maxCourse < $maxValvas) { $maxValvas = $maxCourse; } if ($maxCourse > 0) { $courses[$thisCourseSysCode]['coursePath'] = $thisCoursePath; $courses[$thisCourseSysCode]['courseCode'] = $thisCoursePublicCode; } /* Announcements */ $course_database = $my_course['db']; $course_tool_table = Database::get_course_table(TABLE_TOOL_LIST, $course_database); $query = "SELECT visibility FROM $course_tool_table WHERE link = 'announcements/announcements.php' AND visibility = 1"; $result = Database::query($query); // Collect from announcements, but only if tool is visible for the course. if ($result && $maxValvas > 0 && Database::num_rows($result) > 0) { // Search announcements table. // Take the entries listed at the top of advalvas/announcements tool. $course_announcement_table = Database::get_course_table(TABLE_ANNOUNCEMENT); $sqlGetLastAnnouncements = "SELECT end_date publicationDate, content FROM ".$course_announcement_table; switch (CONFVAL_limitPreviewTo) { case SCRIPTVAL_NewEntriesOfTheDay : $sqlGetLastAnnouncements .= "WHERE DATE_FORMAT(end_date,'%Y %m %d') >= '".date('Y m d')."'"; break; case SCRIPTVAL_NoTimeLimit : break; case SCRIPTVAL_NewEntriesOfTheDayOfLastLogin : // take care mysql -> DATE_FORMAT(time,format) php -> date(format,date) $sqlGetLastAnnouncements .= "WHERE DATE_FORMAT(end_date,'%Y %m %d') >= '".date('Y m d', $_user['lastLogin'])."'"; } $sqlGetLastAnnouncements .= "ORDER BY end_date DESC LIMIT ".$maxValvas; $resGetLastAnnouncements = Database::query($sqlGetLastAnnouncements); if ($resGetLastAnnouncements) { while ($annoncement = Database::fetch_array($resGetLastAnnouncements)) { $keyTools = 'valvas'; $keyTime = $annoncement['publicationDate']; $keyCourse = $thisCourseSysCode; $digest[$$orderKey[0]][$$orderKey[1]][$$orderKey[2]][] = @htmlspecialchars(api_substr(strip_tags($annoncement['content']), 0, CONFVAL_NB_CHAR_FROM_CONTENT), ENT_QUOTES, $charset); $nbDigestEntries ++; // summary has same order as advalvas } } } /* Agenda */ $course_database = $my_course['db']; $course_tool_table = Database :: get_course_table(TABLE_TOOL_LIST, $course_database); $query = "SELECT visibility FROM $course_tool_table WHERE link = 'calendar/agenda.php' AND visibility = 1"; $result = Database::query($query); $thisAgenda = $maxCourse - $nbDigestEntries; // New max entries for agenda. if ($maxAgenda < $thisAgenda) { $thisAgenda = $maxAgenda; } // Collect from agenda, but only if tool is visible for the course. if ($result && $thisAgenda > 0 && Database::num_rows($result) > 0) { $tableCal = $courseTablePrefix.$thisCourseDbName.$_configuration['db_glue'].'calendar_event'; $sqlGetNextAgendaEvent = "SELECT start_date, title content, start_time FROM $tableCal WHERE start_date >= CURDATE() ORDER BY start_date, start_time LIMIT $maxAgenda"; $resGetNextAgendaEvent = Database::query($sqlGetNextAgendaEvent); if ($resGetNextAgendaEvent) { while ($agendaEvent = Database::fetch_array($resGetNextAgendaEvent)) { $keyTools = 'agenda'; $keyTime = $agendaEvent['start_date']; $keyCourse = $thisCourseSysCode; $digest[$$orderKey[0]][$$orderKey[1]][$$orderKey[2]][] = @htmlspecialchars(api_substr(strip_tags($agendaEvent['content']), 0, CONFVAL_NB_CHAR_FROM_CONTENT), ENT_QUOTES, $charset); $nbDigestEntries ++; // Summary has same order as advalvas. } } } /* Digest Display Take collected data and display it. */ } // End while mycourse... } if (isset($_GET['history']) && intval($_GET['history']) == 1) { echo Display::tag('h2', get_lang('HistoryTrainingSession')); //if (empty($courses_tree[0]['sessions'])){ if (empty($courses_tree)){ echo get_lang('YouDoNotHaveAnySessionInItsHistory'); } } if (is_array($courses_tree)) { foreach ($courses_tree as $key => $category) { if ($key == 0) { // Sessions and courses that are not in a session category. if (!isset($_GET['history'])) { // If we're not in the history view... CourseManager :: display_special_courses(api_get_user_id(), $load_dirs); CourseManager :: display_courses(api_get_user_id(), $load_dirs); } // Independent sessions. foreach ($category['sessions'] as $session) { // Don't show empty sessions. if (count($session['courses']) < 1) { continue; } // Courses inside the current session. $date_session_start = $session['details']['date_start']; $days_access_before_beginning = $session['details']['nb_days_access_before_beginning'] * 24 * 3600; $session_now = time(); $html_courses_session = ''; $count_courses_session = 0; foreach ($session['courses'] as $course) { $is_coach_course = api_is_coach($session['details']['id'], $course['code']); $allowed_time = 0; if ($date_session_start != '0000-00-00') { if ($is_coach_course) { $allowed_time = api_strtotime($date_session_start) - $days_access_before_beginning; } else { $allowed_time = api_strtotime($date_session_start); } } if ($session_now > $allowed_time) { //read only and accesible if (api_get_setting('hide_courses_in_sessions') == 'false') { $c = CourseManager :: get_logged_user_course_html($course, $session['details']['id'], 'session_course_item', true, $load_dirs); //$c = CourseManager :: get_logged_user_course_html($course, $session['details']['id'], 'session_course_item',($session['details']['visibility']==3?false:true)); $html_courses_session .= $c[1]; } $count_courses_session++; } } if ($count_courses_session > 0) { echo '
'; } } } else { // All sessions included in. if (!empty($category['details'])) { $count_courses_session = 0; $html_sessions = ''; foreach ($category['sessions'] as $session) { // Don't show empty sessions. if (count($session['courses']) < 1) { continue; } $date_session_start = $session['details']['date_start']; $days_access_before_beginning = $session['details']['nb_days_access_before_beginning'] * 24 * 3600; $session_now = time(); $html_courses_session = ''; $count = 0; foreach ($session['courses'] as $course) { $is_coach_course = api_is_coach($session['details']['id'], $course['code']); if ($is_coach_course) { $allowed_time = api_strtotime($date_session_start) - $days_access_before_beginning; } else { $allowed_time = api_strtotime($date_session_start); } if ($session_now > $allowed_time) { $c = CourseManager :: get_logged_user_course_html($course, $session['details']['id'], 'session_course_item'); $html_courses_session .= $c[1]; $count_courses_session++; $count++; } } if ($count > 0) { $s = Display :: get_session_title_box($session['details']['id']); $html_sessions .= ''; } } if ($count_courses_session > 0) { echo '
'; echo '
'; echo Display::return_icon('folder_blue.png', get_lang('SessionCategory'), array('width'=>'48px', 'align' => 'absmiddle')); if (api_is_platform_admin()) { echo'
'.Display::return_icon('edit.png', get_lang('Edit'), array(),22).'
'; } echo ''; echo $category['details']['name']; echo ''; echo ''; if ($category['details']['date_end'] != '0000-00-00') { printf(get_lang('FromDateXToDateY'),$category['details']['date_start'],$category['details']['date_end']); } echo '
'; echo $html_sessions; echo '
'; } } } } } echo '
'; // End of content main-section // Register whether full admin or null admin course // by course through an array dbname x user status. api_session_register('status'); /* RIGHT MENU */ $show_menu = false; $show_create_link = false; $show_course_link = false; $show_digest_link = false; $display_add_course_link = api_is_allowed_to_create_course() && ($_SESSION['studentview'] != 'studentenview'); if ($display_add_course_link) { $show_menu = true; $show_create_link = true; } if (api_is_platform_admin() || api_is_course_admin() || api_is_allowed_to_create_course()) { $show_menu = true; $show_course_link = true; } else { if (api_get_setting('allow_students_to_browse_courses') == 'true') { $show_menu = true; $show_course_link = true; } } if (isset($toolsList) && is_array($toolsList) && isset($digest)) { $show_digest_link = true; $show_menu = true; } //Always show the user image $img_array = UserManager::get_user_picture_path_by_id(api_get_user_id(), 'web', true, true); $no_image = false; if ($img_array['file'] == 'unknown.jpg') { $no_image = true; } $img_array = UserManager::get_picture_user(api_get_user_id(), $img_array['file'], 50, USER_IMAGE_SIZE_MEDIUM, ' width="90" height="90" '); $profile_content = '
'; $profile_content .= '
'; if (api_get_setting('allow_social_tool') == 'true') { if (!$no_image) { $profile_content .=''; } else { $profile_content .=''; } } else { $profile_content .=''; } $profile_content .= '
'; // @todo Add a platform setting to add the user image. if (api_get_setting('allow_message_tool') == 'true') { require_once api_get_path(LIBRARY_PATH).'message.lib.php'; require_once api_get_path(LIBRARY_PATH).'social.lib.php'; require_once api_get_path(LIBRARY_PATH).'group_portal_manager.lib.php'; // New messages. $number_of_new_messages = MessageManager::get_new_messages(); // New contact invitations. $number_of_new_messages_of_friend = SocialManager::get_message_number_invitation_by_user_id(api_get_user_id()); // New group invitations sent by a moderator. $group_pending_invitations = GroupPortalManager::get_groups_by_user(api_get_user_id(), GROUP_USER_PERMISSION_PENDING_INVITATION, false); $group_pending_invitations = count($group_pending_invitations); $total_invitations = $number_of_new_messages_of_friend + $group_pending_invitations; $cant_msg = ''; if ($number_of_new_messages > 0) { $cant_msg = ' ('.$number_of_new_messages.')'; } $profile_content .= '
'; $profile_content .= '
'; $profile_content .= '
'; } echo ''; // End of menu wrapper function show_right_block($title, $content) { $html= ''; return $html; } // Footer Display :: display_footer();