|
@@ -1,4 +1,4 @@
|
|
-<?php
|
|
|
|
|
|
+<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
|
|
use \ChamiloSession as Session;
|
|
use \ChamiloSession as Session;
|
|
@@ -6,40 +6,41 @@ use \ChamiloSession as Session;
|
|
class IndexManager {
|
|
class IndexManager {
|
|
var $tpl = false; //An instance of the template engine
|
|
var $tpl = false; //An instance of the template engine
|
|
var $name = '';
|
|
var $name = '';
|
|
-
|
|
|
|
|
|
+
|
|
var $home = '';
|
|
var $home = '';
|
|
- var $default_home = 'home/';
|
|
|
|
-
|
|
|
|
- function __construct($title) {
|
|
|
|
- $this->tpl = new Template($title);
|
|
|
|
|
|
+ var $default_home = 'home/';
|
|
|
|
+
|
|
|
|
+ function __construct($title) {
|
|
|
|
+ global $app;
|
|
|
|
+ $this->tpl = new Template($title, $app);
|
|
$this->home = api_get_home_path();
|
|
$this->home = api_get_home_path();
|
|
$this->user_id = api_get_user_id();
|
|
$this->user_id = api_get_user_id();
|
|
$this->load_directories_preview = false;
|
|
$this->load_directories_preview = false;
|
|
-
|
|
|
|
|
|
+
|
|
if (api_get_setting('show_documents_preview') == 'true') {
|
|
if (api_get_setting('show_documents_preview') == 'true') {
|
|
$this->load_directories_preview = true;
|
|
$this->load_directories_preview = true;
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
function set_login_form() {
|
|
function set_login_form() {
|
|
global $loginFailed;
|
|
global $loginFailed;
|
|
-
|
|
|
|
|
|
+
|
|
$login_form = '';
|
|
$login_form = '';
|
|
-
|
|
|
|
|
|
+
|
|
if (!($this->user_id) || api_is_anonymous($this->user_id)) {
|
|
if (!($this->user_id) || api_is_anonymous($this->user_id)) {
|
|
-
|
|
|
|
|
|
+
|
|
// Only display if the user isn't logged in.
|
|
// Only display if the user isn't logged in.
|
|
$this->tpl->assign('login_language_form', api_display_language_form(true));
|
|
$this->tpl->assign('login_language_form', api_display_language_form(true));
|
|
$this->tpl->assign('login_form', self::display_login_form());
|
|
$this->tpl->assign('login_form', self::display_login_form());
|
|
-
|
|
|
|
- if ($loginFailed) {
|
|
|
|
|
|
+
|
|
|
|
+ if ($loginFailed) {
|
|
$this->tpl->assign('login_failed', self::handle_login_failed());
|
|
$this->tpl->assign('login_failed', self::handle_login_failed());
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
if (api_get_setting('allow_lostpassword') == 'true' || api_get_setting('allow_registration') == 'true') {
|
|
if (api_get_setting('allow_lostpassword') == 'true' || api_get_setting('allow_registration') == 'true') {
|
|
$login_form .= '<ul class="nav nav-list">';
|
|
$login_form .= '<ul class="nav nav-list">';
|
|
if (api_get_setting('allow_registration') != 'false') {
|
|
if (api_get_setting('allow_registration') != 'false') {
|
|
- $login_form .= '<li><a href="main/auth/inscription.php">'.get_lang('Reg').'</a></li>';
|
|
|
|
|
|
+ $login_form .= '<li><a href="main/auth/inscription.php">'.get_lang('Reg').'</a></li>';
|
|
}
|
|
}
|
|
if (api_get_setting('allow_lostpassword') == 'true') {
|
|
if (api_get_setting('allow_lostpassword') == 'true') {
|
|
$login_form .= '<li><a href="main/auth/lostPassword.php">'.get_lang('LostPassword').'</a></li>';
|
|
$login_form .= '<li><a href="main/auth/lostPassword.php">'.get_lang('LostPassword').'</a></li>';
|
|
@@ -49,8 +50,8 @@ class IndexManager {
|
|
$this->tpl->assign('login_options', $login_form);
|
|
$this->tpl->assign('login_options', $login_form);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
function return_exercise_block($personal_course_list) {
|
|
function return_exercise_block($personal_course_list) {
|
|
require_once api_get_path(SYS_CODE_PATH).'exercice/exercise.lib.php';
|
|
require_once api_get_path(SYS_CODE_PATH).'exercice/exercise.lib.php';
|
|
$exercise_list = array();
|
|
$exercise_list = array();
|
|
@@ -58,14 +59,14 @@ class IndexManager {
|
|
foreach($personal_course_list as $course_item) {
|
|
foreach($personal_course_list as $course_item) {
|
|
$course_code = $course_item['c'];
|
|
$course_code = $course_item['c'];
|
|
$session_id = $course_item['id_session'];
|
|
$session_id = $course_item['id_session'];
|
|
-
|
|
|
|
|
|
+
|
|
$exercises = get_exercises_to_be_taken($course_code, $session_id);
|
|
$exercises = get_exercises_to_be_taken($course_code, $session_id);
|
|
-
|
|
|
|
|
|
+
|
|
foreach($exercises as $exercise_item) {
|
|
foreach($exercises as $exercise_item) {
|
|
$exercise_item['course_code'] = $course_code;
|
|
$exercise_item['course_code'] = $course_code;
|
|
$exercise_item['session_id'] = $session_id;
|
|
$exercise_item['session_id'] = $session_id;
|
|
$exercise_item['tms'] = api_strtotime($exercise_item['end_time'], 'UTC');
|
|
$exercise_item['tms'] = api_strtotime($exercise_item['end_time'], 'UTC');
|
|
-
|
|
|
|
|
|
+
|
|
$exercise_list[] = $exercise_item;
|
|
$exercise_list[] = $exercise_item;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -78,16 +79,16 @@ class IndexManager {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
- function return_announcements($show_slide = true) {
|
|
|
|
|
|
+
|
|
|
|
+ function return_announcements($show_slide = true) {
|
|
// Display System announcements
|
|
// Display System announcements
|
|
$announcement = isset($_GET['announcement']) ? $_GET['announcement'] : null;
|
|
$announcement = isset($_GET['announcement']) ? $_GET['announcement'] : null;
|
|
- $announcement = intval($announcement);
|
|
|
|
-
|
|
|
|
|
|
+ $announcement = intval($announcement);
|
|
|
|
+
|
|
if (!api_is_anonymous() && $this->user_id) {
|
|
if (!api_is_anonymous() && $this->user_id) {
|
|
$visibility = api_is_allowed_to_create_course() ? SystemAnnouncementManager::VISIBLE_TEACHER : SystemAnnouncementManager::VISIBLE_STUDENT;
|
|
$visibility = api_is_allowed_to_create_course() ? SystemAnnouncementManager::VISIBLE_TEACHER : SystemAnnouncementManager::VISIBLE_STUDENT;
|
|
if ($show_slide) {
|
|
if ($show_slide) {
|
|
- $announcements = SystemAnnouncementManager :: display_announcements_slider($visibility, $announcement);
|
|
|
|
|
|
+ $announcements = SystemAnnouncementManager :: display_announcements_slider($visibility, $announcement);
|
|
} else {
|
|
} else {
|
|
$announcements = SystemAnnouncementManager :: display_all_announcements($visibility, $announcement);
|
|
$announcements = SystemAnnouncementManager :: display_all_announcements($visibility, $announcement);
|
|
}
|
|
}
|
|
@@ -99,15 +100,15 @@ class IndexManager {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return $announcements;
|
|
return $announcements;
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
- * Alias for the online_logout() function
|
|
|
|
|
|
+ * Alias for the online_logout() function
|
|
*/
|
|
*/
|
|
- function logout() {
|
|
|
|
|
|
+ function logout() {
|
|
online_logout($this->user_id, true);
|
|
online_logout($this->user_id, true);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* This function checks if there are courses that are open to the world in the platform course categories (=faculties)
|
|
* This function checks if there are courses that are open to the world in the platform course categories (=faculties)
|
|
*
|
|
*
|
|
@@ -133,8 +134,8 @@ class IndexManager {
|
|
}
|
|
}
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Displays the right-hand menu for anonymous users:
|
|
* Displays the right-hand menu for anonymous users:
|
|
* login form, useful links, help section
|
|
* login form, useful links, help section
|
|
@@ -143,24 +144,24 @@ class IndexManager {
|
|
* @todo does $_plugins need to be global?
|
|
* @todo does $_plugins need to be global?
|
|
*/
|
|
*/
|
|
function display_anonymous_right_menu() {
|
|
function display_anonymous_right_menu() {
|
|
- global $loginFailed, $_user;
|
|
|
|
- $display_add_course_link = api_is_allowed_to_create_course() && ($_SESSION['studentview'] != 'studentenview');
|
|
|
|
|
|
+ global $loginFailed, $_user;
|
|
|
|
+ $display_add_course_link = api_is_allowed_to_create_course() && ($_SESSION['studentview'] != 'studentenview');
|
|
$current_user_id = api_get_user_id();
|
|
$current_user_id = api_get_user_id();
|
|
-
|
|
|
|
- echo self::set_login_form(false);
|
|
|
|
- echo self::return_teacher_link();
|
|
|
|
- echo self::return_notice();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ echo self::set_login_form(false);
|
|
|
|
+ echo self::return_teacher_link();
|
|
|
|
+ echo self::return_notice();
|
|
|
|
+ }
|
|
|
|
+
|
|
function return_teacher_link() {
|
|
function return_teacher_link() {
|
|
$html = '';
|
|
$html = '';
|
|
if (!empty($this->user_id)) {
|
|
if (!empty($this->user_id)) {
|
|
// tabs that are deactivated are added here
|
|
// tabs that are deactivated are added here
|
|
-
|
|
|
|
|
|
+
|
|
$show_menu = false;
|
|
$show_menu = false;
|
|
$show_create_link = false;
|
|
$show_create_link = false;
|
|
$show_course_link = false;
|
|
$show_course_link = false;
|
|
-
|
|
|
|
|
|
+
|
|
if (api_is_platform_admin() || api_is_course_admin() || api_is_allowed_to_create_course()) {
|
|
if (api_is_platform_admin() || api_is_course_admin() || api_is_allowed_to_create_course()) {
|
|
$show_menu = true;
|
|
$show_menu = true;
|
|
$show_course_link = true;
|
|
$show_course_link = true;
|
|
@@ -170,55 +171,55 @@ class IndexManager {
|
|
$show_course_link = true;
|
|
$show_course_link = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
if ($show_menu && ($show_create_link || $show_course_link )) {
|
|
if ($show_menu && ($show_create_link || $show_course_link )) {
|
|
$show_menu = true;
|
|
$show_menu = true;
|
|
} else {
|
|
} else {
|
|
$show_menu = false;
|
|
$show_menu = false;
|
|
}
|
|
}
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
// My Account section
|
|
// My Account section
|
|
-
|
|
|
|
|
|
+
|
|
if ($show_menu) {
|
|
if ($show_menu) {
|
|
$html .= '<ul class="nav nav-list">';
|
|
$html .= '<ul class="nav nav-list">';
|
|
- if ($show_create_link) {
|
|
|
|
|
|
+ if ($show_create_link) {
|
|
$html .= '<li><a href="main/create_course/add_course.php" class="add course">'.(api_get_setting('course_validation') == 'true' ? get_lang('CreateCourseRequest') : get_lang('CourseCreate')).'</a></li>';
|
|
$html .= '<li><a href="main/create_course/add_course.php" class="add course">'.(api_get_setting('course_validation') == 'true' ? get_lang('CreateCourseRequest') : get_lang('CourseCreate')).'</a></li>';
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
if ($show_course_link) {
|
|
if ($show_course_link) {
|
|
if (!api_is_drh() && !api_is_session_admin()) {
|
|
if (!api_is_drh() && !api_is_session_admin()) {
|
|
- $html .= '<li><a href="main/auth/courses.php" class="list course">'.get_lang('CourseCatalog').'</a></li>';
|
|
|
|
|
|
+ $html .= '<li><a href="main/auth/courses.php" class="list course">'.get_lang('CourseCatalog').'</a></li>';
|
|
} else {
|
|
} else {
|
|
$html .= '<li><a href="main/dashboard/index.php">'.get_lang('Dashboard').'</a></li>';
|
|
$html .= '<li><a href="main/dashboard/index.php">'.get_lang('Dashboard').'</a></li>';
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }
|
|
$html .= '</ul>';
|
|
$html .= '</ul>';
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
if (!empty($html)) {
|
|
if (!empty($html)) {
|
|
$html = self::show_right_block(get_lang('Courses'), $html, 'teacher_block');
|
|
$html = self::show_right_block(get_lang('Courses'), $html, 'teacher_block');
|
|
}
|
|
}
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/* Includes a created page */
|
|
/* Includes a created page */
|
|
- function return_home_page() {
|
|
|
|
|
|
+ function return_home_page() {
|
|
|
|
|
|
// Including the page for the news
|
|
// Including the page for the news
|
|
$html = '';
|
|
$html = '';
|
|
-
|
|
|
|
|
|
+
|
|
if (!empty($_GET['include']) && preg_match('/^[a-zA-Z0-9_-]*\.html$/', $_GET['include'])) {
|
|
if (!empty($_GET['include']) && preg_match('/^[a-zA-Z0-9_-]*\.html$/', $_GET['include'])) {
|
|
$open = @(string)file_get_contents(api_get_path(SYS_PATH).$this->home.$_GET['include']);
|
|
$open = @(string)file_get_contents(api_get_path(SYS_PATH).$this->home.$_GET['include']);
|
|
- $html = api_to_system_encoding($open, api_detect_encoding(strip_tags($open)));
|
|
|
|
- } else {
|
|
|
|
|
|
+ $html = api_to_system_encoding($open, api_detect_encoding(strip_tags($open)));
|
|
|
|
+ } else {
|
|
if (!empty($_SESSION['user_language_choice'])) {
|
|
if (!empty($_SESSION['user_language_choice'])) {
|
|
$user_selected_language = $_SESSION['user_language_choice'];
|
|
$user_selected_language = $_SESSION['user_language_choice'];
|
|
} elseif (!empty($_SESSION['_user']['language'])) {
|
|
} elseif (!empty($_SESSION['_user']['language'])) {
|
|
$user_selected_language = $_SESSION['_user']['language'];
|
|
$user_selected_language = $_SESSION['_user']['language'];
|
|
} else {
|
|
} else {
|
|
$user_selected_language = api_get_setting('platformLanguage');
|
|
$user_selected_language = api_get_setting('platformLanguage');
|
|
- }
|
|
|
|
|
|
+ }
|
|
if (!file_exists($this->home.'home_news_'.$user_selected_language.'.html')) {
|
|
if (!file_exists($this->home.'home_news_'.$user_selected_language.'.html')) {
|
|
if (file_exists($this->home.'home_top.html')) {
|
|
if (file_exists($this->home.'home_top.html')) {
|
|
$home_top_temp = file($this->home.'home_top.html');
|
|
$home_top_temp = file($this->home.'home_top.html');
|
|
@@ -237,22 +238,22 @@ class IndexManager {
|
|
$home_top_temp = get_lang('PortalHomepageDefaultIntroduction');
|
|
$home_top_temp = get_lang('PortalHomepageDefaultIntroduction');
|
|
}
|
|
}
|
|
$open = str_replace('{rel_path}', api_get_path(REL_PATH), $home_top_temp);
|
|
$open = str_replace('{rel_path}', api_get_path(REL_PATH), $home_top_temp);
|
|
- $html = api_to_system_encoding($open, api_detect_encoding(strip_tags($open)));
|
|
|
|
|
|
+ $html = api_to_system_encoding($open, api_detect_encoding(strip_tags($open)));
|
|
}
|
|
}
|
|
- return $html;
|
|
|
|
|
|
+ return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
- function return_notice() {
|
|
|
|
|
|
+
|
|
|
|
+ function return_notice() {
|
|
$sys_path = api_get_path(SYS_PATH);
|
|
$sys_path = api_get_path(SYS_PATH);
|
|
$user_selected_language = api_get_interface_language();
|
|
$user_selected_language = api_get_interface_language();
|
|
-
|
|
|
|
|
|
+
|
|
$html = '';
|
|
$html = '';
|
|
// Notice
|
|
// Notice
|
|
$home_notice = @(string)file_get_contents($sys_path.$this->home.'home_notice_'.$user_selected_language.'.html');
|
|
$home_notice = @(string)file_get_contents($sys_path.$this->home.'home_notice_'.$user_selected_language.'.html');
|
|
if (empty($home_notice)) {
|
|
if (empty($home_notice)) {
|
|
$home_notice = @(string)file_get_contents($sys_path.$this->home.'home_notice.html');
|
|
$home_notice = @(string)file_get_contents($sys_path.$this->home.'home_notice.html');
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
if (!empty($home_notice)) {
|
|
if (!empty($home_notice)) {
|
|
$home_notice = api_to_system_encoding($home_notice, api_detect_encoding(strip_tags($home_notice)));
|
|
$home_notice = api_to_system_encoding($home_notice, api_detect_encoding(strip_tags($home_notice)));
|
|
$home_notice = Display::div($home_notice, array('class' => 'homepage_notice'));
|
|
$home_notice = Display::div($home_notice, array('class' => 'homepage_notice'));
|
|
@@ -260,46 +261,46 @@ class IndexManager {
|
|
}
|
|
}
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
- function return_help() {
|
|
|
|
|
|
+
|
|
|
|
+ function return_help() {
|
|
$user_selected_language = api_get_interface_language();
|
|
$user_selected_language = api_get_interface_language();
|
|
$sys_path = api_get_path(SYS_PATH);
|
|
$sys_path = api_get_path(SYS_PATH);
|
|
$platformLanguage = api_get_setting('platformLanguage');
|
|
$platformLanguage = api_get_setting('platformLanguage');
|
|
-
|
|
|
|
|
|
+
|
|
// Help section.
|
|
// Help section.
|
|
/* Hide right menu "general" and other parts on anonymous right menu. */
|
|
/* Hide right menu "general" and other parts on anonymous right menu. */
|
|
-
|
|
|
|
|
|
+
|
|
if (!isset($user_selected_language)) {
|
|
if (!isset($user_selected_language)) {
|
|
$user_selected_language = $platformLanguage;
|
|
$user_selected_language = $platformLanguage;
|
|
}
|
|
}
|
|
-
|
|
|
|
- $html = null;
|
|
|
|
|
|
+
|
|
|
|
+ $html = null;
|
|
$home_menu = @(string)file_get_contents($sys_path.$this->home.'home_menu_'.$user_selected_language.'.html');
|
|
$home_menu = @(string)file_get_contents($sys_path.$this->home.'home_menu_'.$user_selected_language.'.html');
|
|
if (!empty($home_menu)) {
|
|
if (!empty($home_menu)) {
|
|
$home_menu_content .= '<ul class="nav nav-list">';
|
|
$home_menu_content .= '<ul class="nav nav-list">';
|
|
$home_menu_content .= api_to_system_encoding($home_menu, api_detect_encoding(strip_tags($home_menu)));
|
|
$home_menu_content .= api_to_system_encoding($home_menu, api_detect_encoding(strip_tags($home_menu)));
|
|
$home_menu_content .= '</ul>';
|
|
$home_menu_content .= '</ul>';
|
|
$html .= self::show_right_block(get_lang('MenuGeneral'), $home_menu_content, 'help_block');
|
|
$html .= self::show_right_block(get_lang('MenuGeneral'), $home_menu_content, 'help_block');
|
|
- }
|
|
|
|
|
|
+ }
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
function return_skills_links() {
|
|
function return_skills_links() {
|
|
$html = '';
|
|
$html = '';
|
|
if (api_get_setting('allow_skills_tool') == 'true') {
|
|
if (api_get_setting('allow_skills_tool') == 'true') {
|
|
- $content = '<ul class="nav nav-list">';
|
|
|
|
-
|
|
|
|
|
|
+ $content = '<ul class="nav nav-list">';
|
|
|
|
+
|
|
$content .= Display::tag('li', Display::url(get_lang('MySkills'), api_get_path(WEB_CODE_PATH).'social/skills_wheel.php'));
|
|
$content .= Display::tag('li', Display::url(get_lang('MySkills'), api_get_path(WEB_CODE_PATH).'social/skills_wheel.php'));
|
|
-
|
|
|
|
|
|
+
|
|
if (api_get_setting('allow_hr_skills_management') == 'true' || api_is_platform_admin()) {
|
|
if (api_get_setting('allow_hr_skills_management') == 'true' || api_is_platform_admin()) {
|
|
$content .= Display::tag('li', Display::url(get_lang('ManageSkills'), api_get_path(WEB_CODE_PATH).'admin/skills_wheel.php'));
|
|
$content .= Display::tag('li', Display::url(get_lang('ManageSkills'), api_get_path(WEB_CODE_PATH).'admin/skills_wheel.php'));
|
|
}
|
|
}
|
|
- $content .= '</ul>';
|
|
|
|
|
|
+ $content .= '</ul>';
|
|
$html = self::show_right_block(get_lang("Skills"), $content, 'skill_block');
|
|
$html = self::show_right_block(get_lang("Skills"), $content, 'skill_block');
|
|
}
|
|
}
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Reacts on a failed login:
|
|
* Reacts on a failed login:
|
|
* Displays an explanation with a link to the registration form.
|
|
* Displays an explanation with a link to the registration form.
|
|
@@ -308,14 +309,14 @@ class IndexManager {
|
|
*/
|
|
*/
|
|
function handle_login_failed() {
|
|
function handle_login_failed() {
|
|
$message = get_lang('InvalidId');
|
|
$message = get_lang('InvalidId');
|
|
-
|
|
|
|
- if (!isset($_GET['error'])) {
|
|
|
|
|
|
+
|
|
|
|
+ if (!isset($_GET['error'])) {
|
|
if (api_is_self_registration_allowed()) {
|
|
if (api_is_self_registration_allowed()) {
|
|
$message = get_lang('InvalidForSelfRegistration');
|
|
$message = get_lang('InvalidForSelfRegistration');
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
switch ($_GET['error']) {
|
|
switch ($_GET['error']) {
|
|
- case '':
|
|
|
|
|
|
+ case '':
|
|
if (api_is_self_registration_allowed()) {
|
|
if (api_is_self_registration_allowed()) {
|
|
$message = get_lang('InvalidForSelfRegistration');
|
|
$message = get_lang('InvalidForSelfRegistration');
|
|
}
|
|
}
|
|
@@ -338,8 +339,8 @@ class IndexManager {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return Display::return_message($message, 'error');
|
|
return Display::return_message($message, 'error');
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Display list of courses in a category.
|
|
* Display list of courses in a category.
|
|
* (for anonymous users)
|
|
* (for anonymous users)
|
|
@@ -352,22 +353,22 @@ class IndexManager {
|
|
$result = '';
|
|
$result = '';
|
|
$ctok = $_SESSION['sec_token'];
|
|
$ctok = $_SESSION['sec_token'];
|
|
$stok = Security::get_token();
|
|
$stok = Security::get_token();
|
|
-
|
|
|
|
|
|
+
|
|
// Initialization.
|
|
// Initialization.
|
|
$user_identified = (api_get_user_id() > 0 && !api_is_anonymous());
|
|
$user_identified = (api_get_user_id() > 0 && !api_is_anonymous());
|
|
$web_course_path = api_get_path(WEB_COURSE_PATH);
|
|
$web_course_path = api_get_path(WEB_COURSE_PATH);
|
|
$category = Database::escape_string($_GET['category']);
|
|
$category = Database::escape_string($_GET['category']);
|
|
$setting_show_also_closed_courses = api_get_setting('show_closed_courses') == 'true';
|
|
$setting_show_also_closed_courses = api_get_setting('show_closed_courses') == 'true';
|
|
-
|
|
|
|
|
|
+
|
|
// Database table definitions.
|
|
// Database table definitions.
|
|
$main_course_table = Database :: get_main_table(TABLE_MAIN_COURSE);
|
|
$main_course_table = Database :: get_main_table(TABLE_MAIN_COURSE);
|
|
- $main_category_table = Database :: get_main_table(TABLE_MAIN_CATEGORY);
|
|
|
|
-
|
|
|
|
|
|
+ $main_category_table = Database :: get_main_table(TABLE_MAIN_CATEGORY);
|
|
|
|
+
|
|
// Get list of courses in category $category.
|
|
// Get list of courses in category $category.
|
|
$sql_get_course_list = "SELECT * FROM $main_course_table cours
|
|
$sql_get_course_list = "SELECT * FROM $main_course_table cours
|
|
WHERE category_code = '".Database::escape_string($_GET['category'])."'
|
|
WHERE category_code = '".Database::escape_string($_GET['category'])."'
|
|
ORDER BY title, UPPER(visual_code)";
|
|
ORDER BY title, UPPER(visual_code)";
|
|
-
|
|
|
|
|
|
+
|
|
// Showing only the courses of the current access_url_id.
|
|
// Showing only the courses of the current access_url_id.
|
|
global $_configuration;
|
|
global $_configuration;
|
|
if ($_configuration['multiple_access_urls']) {
|
|
if ($_configuration['multiple_access_urls']) {
|
|
@@ -379,14 +380,14 @@ class IndexManager {
|
|
WHERE access_url_id = $url_access_id AND category_code = '".Database::escape_string($_GET['category'])."' ORDER BY title, UPPER(visual_code)";
|
|
WHERE access_url_id = $url_access_id AND category_code = '".Database::escape_string($_GET['category'])."' ORDER BY title, UPPER(visual_code)";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
// Removed: AND cours.visibility='".COURSE_VISIBILITY_OPEN_WORLD."'
|
|
// Removed: AND cours.visibility='".COURSE_VISIBILITY_OPEN_WORLD."'
|
|
$sql_result_courses = Database::query($sql_get_course_list);
|
|
$sql_result_courses = Database::query($sql_get_course_list);
|
|
-
|
|
|
|
|
|
+
|
|
while ($course_result = Database::fetch_array($sql_result_courses)) {
|
|
while ($course_result = Database::fetch_array($sql_result_courses)) {
|
|
$course_list[] = $course_result;
|
|
$course_list[] = $course_result;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$platform_visible_courses = '';
|
|
$platform_visible_courses = '';
|
|
// $setting_show_also_closed_courses
|
|
// $setting_show_also_closed_courses
|
|
if ($user_identified) {
|
|
if ($user_identified) {
|
|
@@ -409,9 +410,9 @@ class IndexManager {
|
|
LEFT JOIN $main_course_table t3 ON (t3.category_code=t1.code $platform_visible_courses)
|
|
LEFT JOIN $main_course_table t3 ON (t3.category_code=t1.code $platform_visible_courses)
|
|
WHERE t1.parent_id ". (empty ($category) ? "IS NULL" : "='$category'")."
|
|
WHERE t1.parent_id ". (empty ($category) ? "IS NULL" : "='$category'")."
|
|
GROUP BY t1.name,t1.code,t1.parent_id,t1.children_count ORDER BY t1.tree_pos, t1.name";
|
|
GROUP BY t1.name,t1.code,t1.parent_id,t1.children_count ORDER BY t1.tree_pos, t1.name";
|
|
-
|
|
|
|
-
|
|
|
|
- // Showing only the category of courses of the current access_url_id
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ // Showing only the category of courses of the current access_url_id
|
|
if ($_configuration['multiple_access_urls']) {
|
|
if ($_configuration['multiple_access_urls']) {
|
|
$url_access_id = api_get_current_access_url_id();
|
|
$url_access_id = api_get_current_access_url_id();
|
|
if ($url_access_id != -1) {
|
|
if ($url_access_id != -1) {
|
|
@@ -427,14 +428,14 @@ class IndexManager {
|
|
GROUP BY t1.name,t1.code,t1.parent_id,t1.children_count ORDER BY t1.tree_pos, t1.name";
|
|
GROUP BY t1.name,t1.code,t1.parent_id,t1.children_count ORDER BY t1.tree_pos, t1.name";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$resCats = Database::query($sqlGetSubCatList);
|
|
$resCats = Database::query($sqlGetSubCatList);
|
|
$thereIsSubCat = false;
|
|
$thereIsSubCat = false;
|
|
if (Database::num_rows($resCats) > 0) {
|
|
if (Database::num_rows($resCats) > 0) {
|
|
$htmlListCat = Display::page_header(get_lang('CatList'));
|
|
$htmlListCat = Display::page_header(get_lang('CatList'));
|
|
$htmlListCat .= '<ul>';
|
|
$htmlListCat .= '<ul>';
|
|
while ($catLine = Database::fetch_array($resCats)) {
|
|
while ($catLine = Database::fetch_array($resCats)) {
|
|
- if ($catLine['code'] != $category) {
|
|
|
|
|
|
+ if ($catLine['code'] != $category) {
|
|
$category_has_open_courses = self::category_has_open_courses($catLine['code']);
|
|
$category_has_open_courses = self::category_has_open_courses($catLine['code']);
|
|
if ($category_has_open_courses) {
|
|
if ($category_has_open_courses) {
|
|
// The category contains courses accessible to anonymous visitors.
|
|
// The category contains courses accessible to anonymous visitors.
|
|
@@ -488,14 +489,14 @@ class IndexManager {
|
|
$courses_list_string = '';
|
|
$courses_list_string = '';
|
|
$courses_shown = 0;
|
|
$courses_shown = 0;
|
|
if ($numrows > 0) {
|
|
if ($numrows > 0) {
|
|
-
|
|
|
|
|
|
+
|
|
$courses_list_string .= Display::page_header(get_lang('CourseList'));
|
|
$courses_list_string .= Display::page_header(get_lang('CourseList'));
|
|
$courses_list_string .= "<ul>";
|
|
$courses_list_string .= "<ul>";
|
|
-
|
|
|
|
|
|
+
|
|
if (api_get_user_id()) {
|
|
if (api_get_user_id()) {
|
|
$courses_of_user = self::get_courses_of_user(api_get_user_id());
|
|
$courses_of_user = self::get_courses_of_user(api_get_user_id());
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
foreach ($course_list as $course) {
|
|
foreach ($course_list as $course) {
|
|
// $setting_show_also_closed_courses
|
|
// $setting_show_also_closed_courses
|
|
if (!$setting_show_also_closed_courses) {
|
|
if (!$setting_show_also_closed_courses) {
|
|
@@ -561,7 +562,7 @@ class IndexManager {
|
|
if (api_get_setting('show_different_course_language') == 'true' && $course['course_language'] != api_get_setting('platformLanguage')) {
|
|
if (api_get_setting('show_different_course_language') == 'true' && $course['course_language'] != api_get_setting('platformLanguage')) {
|
|
$course_details[] = $course['course_language'];
|
|
$course_details[] = $course['course_language'];
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$courses_list_string .= implode(' - ', $course_details);
|
|
$courses_list_string .= implode(' - ', $course_details);
|
|
// We display a subscription link if:
|
|
// We display a subscription link if:
|
|
// 1. it is allowed to register for the course and if the course is not already in the courselist of the user and if the user is identiefied
|
|
// 1. it is allowed to register for the course and if the course is not already in the courselist of the user and if the user is identiefied
|
|
@@ -589,9 +590,9 @@ class IndexManager {
|
|
if ($category != '') {
|
|
if ($category != '') {
|
|
$result .= '<p><a href="'.api_get_self().'"> ' . Display :: return_icon('back.png', get_lang('BackToHomePage')) . get_lang('BackToHomePage') . '</a></p>';
|
|
$result .= '<p><a href="'.api_get_self().'"> ' . Display :: return_icon('back.png', get_lang('BackToHomePage')) . get_lang('BackToHomePage') . '</a></p>';
|
|
}
|
|
}
|
|
- return $result;
|
|
|
|
|
|
+ return $result;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* retrieves all the courses that the user has already subscribed to
|
|
* retrieves all the courses that the user has already subscribed to
|
|
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University, Belgium
|
|
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University, Belgium
|
|
@@ -619,25 +620,25 @@ class IndexManager {
|
|
$courses[$row['k']] = array('db' => $row['db'], 'code' => $row['k'], 'visual_code' => $row['vc'], 'title' => $row['i'], 'directory' => $row['dir'], 'status' => $row['status'], 'tutor' => $row['t'], 'subscribe' => $row['subscr'], 'unsubscribe' => $row['unsubscr'], 'sort' => $row['sort'], 'user_course_category' => $row['user_course_cat']);
|
|
$courses[$row['k']] = array('db' => $row['db'], 'code' => $row['k'], 'visual_code' => $row['vc'], 'title' => $row['i'], 'directory' => $row['dir'], 'status' => $row['status'], 'tutor' => $row['t'], 'subscribe' => $row['subscr'], 'unsubscribe' => $row['unsubscr'], 'sort' => $row['sort'], 'user_course_category' => $row['user_course_cat']);
|
|
}
|
|
}
|
|
return $courses;
|
|
return $courses;
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @todo use the template system
|
|
* @todo use the template system
|
|
*/
|
|
*/
|
|
- function show_right_block($title, $content, $id = null, $params = null) {
|
|
|
|
- if (!empty($id)) {
|
|
|
|
|
|
+ function show_right_block($title, $content, $id = null, $params = null) {
|
|
|
|
+ if (!empty($id)) {
|
|
$params['id'] = $id;
|
|
$params['id'] = $id;
|
|
- }
|
|
|
|
|
|
+ }
|
|
$params['class'] = 'well sidebar-nav';
|
|
$params['class'] = 'well sidebar-nav';
|
|
- $html = null;
|
|
|
|
|
|
+ $html = null;
|
|
if (!empty($title)) {
|
|
if (!empty($title)) {
|
|
$html.= '<h4>'.$title.'</h4>';
|
|
$html.= '<h4>'.$title.'</h4>';
|
|
- }
|
|
|
|
|
|
+ }
|
|
$html.= $content;
|
|
$html.= $content;
|
|
$html = Display::div($html, $params);
|
|
$html = Display::div($html, $params);
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Adds a form to let users login
|
|
* Adds a form to let users login
|
|
* @version 1.1
|
|
* @version 1.1
|
|
@@ -645,11 +646,11 @@ class IndexManager {
|
|
function display_login_form() {
|
|
function display_login_form() {
|
|
$form = new FormValidator('formLogin', 'POST', null, null, array('class'=>'form-vertical'));
|
|
$form = new FormValidator('formLogin', 'POST', null, null, array('class'=>'form-vertical'));
|
|
// 'placeholder'=>get_lang('UserName')
|
|
// 'placeholder'=>get_lang('UserName')
|
|
- //'autocomplete'=>"off",
|
|
|
|
-
|
|
|
|
|
|
+ //'autocomplete'=>"off",
|
|
|
|
+
|
|
$form->addElement('text', 'login', get_lang('UserName'), array('class' => 'span2 autocapitalize_off', 'autofocus' => 'autofocus'));
|
|
$form->addElement('text', 'login', get_lang('UserName'), array('class' => 'span2 autocapitalize_off', 'autofocus' => 'autofocus'));
|
|
$form->addElement('password', 'password', get_lang('Pass'), array('class' => 'span2'));
|
|
$form->addElement('password', 'password', get_lang('Pass'), array('class' => 'span2'));
|
|
- $form->addElement('style_submit_button','submitAuth', get_lang('LoginEnter'), array('class' => 'btn'));
|
|
|
|
|
|
+ $form->addElement('style_submit_button','submitAuth', get_lang('LoginEnter'), array('class' => 'btn'));
|
|
$html = $form->return_form();
|
|
$html = $form->return_form();
|
|
if (api_get_setting('openid_authentication') == 'true') {
|
|
if (api_get_setting('openid_authentication') == 'true') {
|
|
include_once 'main/auth/openid/login.php';
|
|
include_once 'main/auth/openid/login.php';
|
|
@@ -657,22 +658,22 @@ class IndexManager {
|
|
}
|
|
}
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
function return_search_block() {
|
|
function return_search_block() {
|
|
- $html = '';
|
|
|
|
|
|
+ $html = '';
|
|
if (api_get_setting('search_enabled') == 'true') {
|
|
if (api_get_setting('search_enabled') == 'true') {
|
|
$html .= '<div class="searchbox">';
|
|
$html .= '<div class="searchbox">';
|
|
- $search_btn = get_lang('Search');
|
|
|
|
|
|
+ $search_btn = get_lang('Search');
|
|
$search_content = '<br />
|
|
$search_content = '<br />
|
|
<form action="main/search/" method="post">
|
|
<form action="main/search/" method="post">
|
|
<input type="text" id="query" class="span2" name="query" value="" />
|
|
<input type="text" id="query" class="span2" name="query" value="" />
|
|
<button class="save" type="submit" name="submit" value="'.$search_btn.'" />'.$search_btn.' </button>
|
|
<button class="save" type="submit" name="submit" value="'.$search_btn.'" />'.$search_btn.' </button>
|
|
- </form></div>';
|
|
|
|
|
|
+ </form></div>';
|
|
$html .= self::show_right_block(get_lang('Search'), $search_content, 'search_block');
|
|
$html .= self::show_right_block(get_lang('Search'), $search_content, 'search_block');
|
|
}
|
|
}
|
|
- return $html;
|
|
|
|
|
|
+ return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
function return_classes_block() {
|
|
function return_classes_block() {
|
|
$html = '';
|
|
$html = '';
|
|
if (api_get_setting('show_groups_to_users') == 'true') {
|
|
if (api_get_setting('show_groups_to_users') == 'true') {
|
|
@@ -693,11 +694,11 @@ class IndexManager {
|
|
if (!empty($classes)) {
|
|
if (!empty($classes)) {
|
|
$classes = Display::tag('ul', $classes, array('class'=>'nav nav-list'));
|
|
$classes = Display::tag('ul', $classes, array('class'=>'nav nav-list'));
|
|
$html .= self::show_right_block(get_lang('Classes'), $classes, 'classes_block');
|
|
$html .= self::show_right_block(get_lang('Classes'), $classes, 'classes_block');
|
|
- }
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
function return_reservation_block() {
|
|
function return_reservation_block() {
|
|
$html = '';
|
|
$html = '';
|
|
if (api_get_setting('allow_reservation') == 'true' && api_is_allowed_to_create_course()) {
|
|
if (api_get_setting('allow_reservation') == 'true' && api_is_allowed_to_create_course()) {
|
|
@@ -708,54 +709,54 @@ class IndexManager {
|
|
}
|
|
}
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
- function return_user_image_block() {
|
|
|
|
- $img_array = UserManager::get_user_picture_path_by_id(api_get_user_id(), 'web', true, true);
|
|
|
|
- $img_array = UserManager::get_picture_user(api_get_user_id(), $img_array['file'], 50, USER_IMAGE_SIZE_MEDIUM, ' width="90" height="90" ');
|
|
|
|
|
|
+
|
|
|
|
+ function return_user_image_block() {
|
|
|
|
+ $img_array = UserManager::get_user_picture_path_by_id(api_get_user_id(), 'web', true, true);
|
|
|
|
+ $img_array = UserManager::get_picture_user(api_get_user_id(), $img_array['file'], 50, USER_IMAGE_SIZE_MEDIUM, ' width="90" height="90" ');
|
|
if (api_get_setting('allow_social_tool') == 'true') {
|
|
if (api_get_setting('allow_social_tool') == 'true') {
|
|
$profile_content .='<a style="text-align:center" href="'.api_get_path(WEB_PATH).'main/social/home.php"><img src="'.$img_array['file'].'" '.$img_array['style'].' ></a>';
|
|
$profile_content .='<a style="text-align:center" href="'.api_get_path(WEB_PATH).'main/social/home.php"><img src="'.$img_array['file'].'" '.$img_array['style'].' ></a>';
|
|
} else {
|
|
} else {
|
|
$profile_content .='<a style="text-align:center" href="'.api_get_path(WEB_PATH).'main/auth/profile.php"><img title="'.get_lang('EditProfile').'" src="'.$img_array['file'].'" '.$img_array['style'].'></a>';
|
|
$profile_content .='<a style="text-align:center" href="'.api_get_path(WEB_PATH).'main/auth/profile.php"><img title="'.get_lang('EditProfile').'" src="'.$img_array['file'].'" '.$img_array['style'].'></a>';
|
|
- }
|
|
|
|
|
|
+ }
|
|
$html = self::show_right_block(null, $profile_content, 'user_image_block', array('style' => 'text-align:center;'));
|
|
$html = self::show_right_block(null, $profile_content, 'user_image_block', array('style' => 'text-align:center;'));
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
function return_profile_block() {
|
|
function return_profile_block() {
|
|
$html = '';
|
|
$html = '';
|
|
$user_id = api_get_user_id();
|
|
$user_id = api_get_user_id();
|
|
-
|
|
|
|
|
|
+
|
|
if (empty($user_id)) {
|
|
if (empty($user_id)) {
|
|
- return;
|
|
|
|
|
|
+ return;
|
|
}
|
|
}
|
|
-
|
|
|
|
- $profile_content .= '<ul class="nav nav-list">';
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ $profile_content .= '<ul class="nav nav-list">';
|
|
|
|
+
|
|
// @todo Add a platform setting to add the user image.
|
|
// @todo Add a platform setting to add the user image.
|
|
if (api_get_setting('allow_message_tool') == 'true') {
|
|
if (api_get_setting('allow_message_tool') == 'true') {
|
|
require_once api_get_path(LIBRARY_PATH).'group_portal_manager.lib.php';
|
|
require_once api_get_path(LIBRARY_PATH).'group_portal_manager.lib.php';
|
|
-
|
|
|
|
|
|
+
|
|
// New messages.
|
|
// New messages.
|
|
$number_of_new_messages = MessageManager::get_new_messages();
|
|
$number_of_new_messages = MessageManager::get_new_messages();
|
|
// New contact invitations.
|
|
// New contact invitations.
|
|
$number_of_new_messages_of_friend = SocialManager::get_message_number_invitation_by_user_id(api_get_user_id());
|
|
$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.
|
|
// 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 = GroupPortalManager::get_groups_by_user(api_get_user_id(), GROUP_USER_PERMISSION_PENDING_INVITATION, false);
|
|
$group_pending_invitations = count($group_pending_invitations);
|
|
$group_pending_invitations = count($group_pending_invitations);
|
|
-
|
|
|
|
|
|
+
|
|
$total_invitations = $number_of_new_messages_of_friend + $group_pending_invitations;
|
|
$total_invitations = $number_of_new_messages_of_friend + $group_pending_invitations;
|
|
- $cant_msg = Display::badge($number_of_new_messages);
|
|
|
|
-
|
|
|
|
|
|
+ $cant_msg = Display::badge($number_of_new_messages);
|
|
|
|
+
|
|
$link = '';
|
|
$link = '';
|
|
if (api_get_setting('allow_social_tool') == 'true') {
|
|
if (api_get_setting('allow_social_tool') == 'true') {
|
|
$link = '?f=social';
|
|
$link = '?f=social';
|
|
}
|
|
}
|
|
$profile_content .= '<li><a href="'.api_get_path(WEB_PATH).'main/messages/inbox.php'.$link.'">'.get_lang('Inbox').$cant_msg.' </a></li>';
|
|
$profile_content .= '<li><a href="'.api_get_path(WEB_PATH).'main/messages/inbox.php'.$link.'">'.get_lang('Inbox').$cant_msg.' </a></li>';
|
|
- $profile_content .= '<li><a href="'.api_get_path(WEB_PATH).'main/messages/new_message.php'.$link.'">'.get_lang('Compose').' </a></li>';
|
|
|
|
-
|
|
|
|
- if (api_get_setting('allow_social_tool') == 'true') {
|
|
|
|
- $total_invitations = Display::badge($total_invitations);
|
|
|
|
|
|
+ $profile_content .= '<li><a href="'.api_get_path(WEB_PATH).'main/messages/new_message.php'.$link.'">'.get_lang('Compose').' </a></li>';
|
|
|
|
+
|
|
|
|
+ if (api_get_setting('allow_social_tool') == 'true') {
|
|
|
|
+ $total_invitations = Display::badge($total_invitations);
|
|
$profile_content .= '<li><a href="'.api_get_path(WEB_PATH).'main/social/invitations.php">'.get_lang('PendingInvitations').$total_invitations.'</a></li>';
|
|
$profile_content .= '<li><a href="'.api_get_path(WEB_PATH).'main/social/invitations.php">'.get_lang('PendingInvitations').$total_invitations.'</a></li>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -764,37 +765,37 @@ class IndexManager {
|
|
$html = self::show_right_block(get_lang('Profile'), $profile_content, 'profile_block');
|
|
$html = self::show_right_block(get_lang('Profile'), $profile_content, 'profile_block');
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
function return_navigation_links() {
|
|
function return_navigation_links() {
|
|
$html = '';
|
|
$html = '';
|
|
-
|
|
|
|
|
|
+
|
|
// Deleting the myprofile link.
|
|
// Deleting the myprofile link.
|
|
if (api_get_setting('allow_social_tool') == 'true') {
|
|
if (api_get_setting('allow_social_tool') == 'true') {
|
|
unset($this->tpl->menu_navigation['myprofile']);
|
|
unset($this->tpl->menu_navigation['myprofile']);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
// Main navigation section.
|
|
// Main navigation section.
|
|
// Tabs that are deactivated are added here.
|
|
// Tabs that are deactivated are added here.
|
|
- if (!empty($this->tpl->menu_navigation)) {
|
|
|
|
|
|
+ if (!empty($this->tpl->menu_navigation)) {
|
|
$content = '<ul class="nav nav-list">';
|
|
$content = '<ul class="nav nav-list">';
|
|
- foreach ($this->tpl->menu_navigation as $section => $navigation_info) {
|
|
|
|
|
|
+ foreach ($this->tpl->menu_navigation as $section => $navigation_info) {
|
|
$current = $section == $GLOBALS['this_section'] ? ' id="current"' : '';
|
|
$current = $section == $GLOBALS['this_section'] ? ' id="current"' : '';
|
|
$content .= '<li'.$current.'>';
|
|
$content .= '<li'.$current.'>';
|
|
$content .= '<a href="'.$navigation_info['url'].'" target="_self">'.$navigation_info['title'].'</a>';
|
|
$content .= '<a href="'.$navigation_info['url'].'" target="_self">'.$navigation_info['title'].'</a>';
|
|
$content .= '</li>';
|
|
$content .= '</li>';
|
|
}
|
|
}
|
|
- $content .= '</ul>';
|
|
|
|
|
|
+ $content .= '</ul>';
|
|
$html = self::show_right_block(get_lang('MainNavigation'), $content, 'navigation_link_block');
|
|
$html = self::show_right_block(get_lang('MainNavigation'), $content, 'navigation_link_block');
|
|
- }
|
|
|
|
|
|
+ }
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
function return_course_block() {
|
|
function return_course_block() {
|
|
$html = '';
|
|
$html = '';
|
|
|
|
|
|
$show_create_link = false;
|
|
$show_create_link = false;
|
|
$show_course_link = false;
|
|
$show_course_link = false;
|
|
-
|
|
|
|
|
|
+
|
|
if ((api_get_setting('allow_users_to_create_courses') == 'false' && !api_is_platform_admin()) || api_is_student()) {
|
|
if ((api_get_setting('allow_users_to_create_courses') == 'false' && !api_is_platform_admin()) || api_is_student()) {
|
|
$display_add_course_link = false;
|
|
$display_add_course_link = false;
|
|
} else {
|
|
} else {
|
|
@@ -804,95 +805,95 @@ class IndexManager {
|
|
if ($display_add_course_link) {
|
|
if ($display_add_course_link) {
|
|
$show_create_link = true;
|
|
$show_create_link = true;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
if (api_is_platform_admin() || api_is_course_admin() || api_is_allowed_to_create_course()) {
|
|
if (api_is_platform_admin() || api_is_course_admin() || api_is_allowed_to_create_course()) {
|
|
$show_course_link = true;
|
|
$show_course_link = true;
|
|
} else {
|
|
} else {
|
|
- if (api_get_setting('allow_students_to_browse_courses') == 'true') {
|
|
|
|
|
|
+ if (api_get_setting('allow_students_to_browse_courses') == 'true') {
|
|
$show_course_link = true;
|
|
$show_course_link = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
- // My account section
|
|
|
|
|
|
+
|
|
|
|
+ // My account section
|
|
$my_account_content = '<ul class="nav nav-list">';
|
|
$my_account_content = '<ul class="nav nav-list">';
|
|
-
|
|
|
|
|
|
+
|
|
if ($show_create_link) {
|
|
if ($show_create_link) {
|
|
$my_account_content .= '<li><a href="main/create_course/add_course.php" class="add course">'.(api_get_setting('course_validation') == 'true' ? get_lang('CreateCourseRequest') : get_lang('CourseCreate')).'</a></li>';
|
|
$my_account_content .= '<li><a href="main/create_course/add_course.php" class="add course">'.(api_get_setting('course_validation') == 'true' ? get_lang('CreateCourseRequest') : get_lang('CourseCreate')).'</a></li>';
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
//Sort courses
|
|
//Sort courses
|
|
$url = api_get_path(WEB_CODE_PATH).'auth/courses.php?action=sortmycourses';
|
|
$url = api_get_path(WEB_CODE_PATH).'auth/courses.php?action=sortmycourses';
|
|
$my_account_content .= '<li>'.Display::url(get_lang('SortMyCourses'), $url, array('class' => 'sort course')).'</li>';
|
|
$my_account_content .= '<li>'.Display::url(get_lang('SortMyCourses'), $url, array('class' => 'sort course')).'</li>';
|
|
|
|
|
|
- //Course management
|
|
|
|
|
|
+ //Course management
|
|
if ($show_course_link) {
|
|
if ($show_course_link) {
|
|
if (!api_is_drh()) {
|
|
if (!api_is_drh()) {
|
|
- $my_account_content .= '<li><a href="main/auth/courses.php" class="list course">'.get_lang('CourseCatalog').'</a></li>';
|
|
|
|
-
|
|
|
|
|
|
+ $my_account_content .= '<li><a href="main/auth/courses.php" class="list course">'.get_lang('CourseCatalog').'</a></li>';
|
|
|
|
+
|
|
if (isset($_GET['history']) && intval($_GET['history']) == 1) {
|
|
if (isset($_GET['history']) && intval($_GET['history']) == 1) {
|
|
$my_account_content .= '<li><a href="user_portal.php">'.get_lang('DisplayTrainingList').'</a></li>';
|
|
$my_account_content .= '<li><a href="user_portal.php">'.get_lang('DisplayTrainingList').'</a></li>';
|
|
} else {
|
|
} else {
|
|
$my_account_content .= '<li><a href="user_portal.php?history=1" class="history course">'.get_lang('HistoryTrainingSessions').'</a></li>';
|
|
$my_account_content .= '<li><a href="user_portal.php?history=1" class="history course">'.get_lang('HistoryTrainingSessions').'</a></li>';
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
} else {
|
|
} else {
|
|
$my_account_content .= '<li><a href="main/dashboard/index.php">'.get_lang('Dashboard').'</a></li>';
|
|
$my_account_content .= '<li><a href="main/dashboard/index.php">'.get_lang('Dashboard').'</a></li>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$my_account_content .= '</ul>';
|
|
$my_account_content .= '</ul>';
|
|
-
|
|
|
|
|
|
+
|
|
if (!empty($my_account_content)) {
|
|
if (!empty($my_account_content)) {
|
|
$html = self::show_right_block(get_lang('Courses'), $my_account_content, 'course_block');
|
|
$html = self::show_right_block(get_lang('Courses'), $my_account_content, 'course_block');
|
|
}
|
|
}
|
|
return $html;
|
|
return $html;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* The most important function here, prints the session and course list (user_portal.php)
|
|
* The most important function here, prints the session and course list (user_portal.php)
|
|
- *
|
|
|
|
|
|
+ *
|
|
* */
|
|
* */
|
|
- function return_courses_and_sessions($user_id) {
|
|
|
|
- $session_categories = array();
|
|
|
|
|
|
+ function return_courses_and_sessions($user_id) {
|
|
|
|
+ $session_categories = array();
|
|
$load_history = (isset($_GET['history']) && intval($_GET['history']) == 1) ? true : false;
|
|
$load_history = (isset($_GET['history']) && intval($_GET['history']) == 1) ? true : false;
|
|
-
|
|
|
|
|
|
+
|
|
if ($load_history) {
|
|
if ($load_history) {
|
|
//Load sessions in category in *history*
|
|
//Load sessions in category in *history*
|
|
- $session_categories = UserManager::get_sessions_by_category($user_id, true);
|
|
|
|
|
|
+ $session_categories = UserManager::get_sessions_by_category($user_id, true);
|
|
} else {
|
|
} else {
|
|
//Load sessions in category
|
|
//Load sessions in category
|
|
$session_categories = UserManager::get_sessions_by_category($user_id, false);
|
|
$session_categories = UserManager::get_sessions_by_category($user_id, false);
|
|
- }
|
|
|
|
-
|
|
|
|
- $html = '';
|
|
|
|
- //Showing history title
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $html = '';
|
|
|
|
+ //Showing history title
|
|
if ($load_history) {
|
|
if ($load_history) {
|
|
- $html .= Display::page_subheader(get_lang('HistoryTrainingSession'));
|
|
|
|
|
|
+ $html .= Display::page_subheader(get_lang('HistoryTrainingSession'));
|
|
if (empty($session_categories)) {
|
|
if (empty($session_categories)) {
|
|
$html .= get_lang('YouDoNotHaveAnySessionInItsHistory');
|
|
$html .= get_lang('YouDoNotHaveAnySessionInItsHistory');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$courses_html = '';
|
|
$courses_html = '';
|
|
$special_courses = '';
|
|
$special_courses = '';
|
|
-
|
|
|
|
|
|
+
|
|
// If we're not in the history view...
|
|
// If we're not in the history view...
|
|
if (!isset($_GET['history'])) {
|
|
if (!isset($_GET['history'])) {
|
|
//Display special courses
|
|
//Display special courses
|
|
- $special_courses = CourseManager::display_special_courses($user_id, $this->load_directories_preview);
|
|
|
|
|
|
+ $special_courses = CourseManager::display_special_courses($user_id, $this->load_directories_preview);
|
|
//Display courses
|
|
//Display courses
|
|
$courses_html .= CourseManager::display_courses($user_id, $this->load_directories_preview);
|
|
$courses_html .= CourseManager::display_courses($user_id, $this->load_directories_preview);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$sessions_with_category = '';
|
|
$sessions_with_category = '';
|
|
- $sessions_with_no_category = '';
|
|
|
|
-
|
|
|
|
|
|
+ $sessions_with_no_category = '';
|
|
|
|
+
|
|
if (is_array($session_categories)) {
|
|
if (is_array($session_categories)) {
|
|
foreach ($session_categories as $session_category) {
|
|
foreach ($session_categories as $session_category) {
|
|
$session_category_id = $session_category['session_category']['id'];
|
|
$session_category_id = $session_category['session_category']['id'];
|
|
// Sessions and courses that are not in a session category
|
|
// Sessions and courses that are not in a session category
|
|
if ($session_category_id == 0) {
|
|
if ($session_category_id == 0) {
|
|
-
|
|
|
|
|
|
+
|
|
// Independent sessions
|
|
// Independent sessions
|
|
if (isset($session_category['sessions'])) {
|
|
if (isset($session_category['sessions'])) {
|
|
foreach ($session_category['sessions'] as $session) {
|
|
foreach ($session_category['sessions'] as $session) {
|
|
@@ -907,10 +908,10 @@ class IndexManager {
|
|
$html_courses_session = '';
|
|
$html_courses_session = '';
|
|
$count_courses_session = 0;
|
|
$count_courses_session = 0;
|
|
|
|
|
|
- foreach ($session['courses'] as $course) {
|
|
|
|
|
|
+ foreach ($session['courses'] as $course) {
|
|
//read only and accesible
|
|
//read only and accesible
|
|
if (api_get_setting('hide_courses_in_sessions') == 'false') {
|
|
if (api_get_setting('hide_courses_in_sessions') == 'false') {
|
|
- $html_courses_session .= CourseManager :: get_logged_user_course_html($course, $session_id, $this->load_directories_preview);
|
|
|
|
|
|
+ $html_courses_session .= CourseManager :: get_logged_user_course_html($course, $session_id, $this->load_directories_preview);
|
|
}
|
|
}
|
|
$count_courses_session++;
|
|
$count_courses_session++;
|
|
}
|
|
}
|
|
@@ -930,9 +931,9 @@ class IndexManager {
|
|
$params['title'] = $session_link;
|
|
$params['title'] = $session_link;
|
|
|
|
|
|
$moved_status = SessionManager::get_session_change_user_reason($session['moved_status']);
|
|
$moved_status = SessionManager::get_session_change_user_reason($session['moved_status']);
|
|
- $moved_status = isset($moved_status) && !empty($moved_status) ? ' ('.$moved_status.')' : null;
|
|
|
|
|
|
+ $moved_status = isset($moved_status) && !empty($moved_status) ? ' ('.$moved_status.')' : null;
|
|
|
|
|
|
- $params['subtitle'] = isset($session['coach_info']) ? $session['coach_info']['complete_name'] : null.$moved_status;
|
|
|
|
|
|
+ $params['subtitle'] = isset($session['coach_info']) ? $session['coach_info']['complete_name'] : null.$moved_status;
|
|
$params['dates'] = $session['date_message'];
|
|
$params['dates'] = $session['date_message'];
|
|
|
|
|
|
$params['right_actions'] = '';
|
|
$params['right_actions'] = '';
|
|
@@ -948,18 +949,18 @@ class IndexManager {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
- } else {
|
|
|
|
- // All sessions included in
|
|
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ // All sessions included in
|
|
$count_courses_session = 0;
|
|
$count_courses_session = 0;
|
|
- $html_sessions = '';
|
|
|
|
|
|
+ $html_sessions = '';
|
|
foreach ($session_category['sessions'] as $session) {
|
|
foreach ($session_category['sessions'] as $session) {
|
|
- $session_id = $session['session_id'];
|
|
|
|
|
|
+ $session_id = $session['session_id'];
|
|
// Don't show empty sessions.
|
|
// Don't show empty sessions.
|
|
if (count($session['courses']) < 1) {
|
|
if (count($session['courses']) < 1) {
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$html_courses_session = '';
|
|
$html_courses_session = '';
|
|
$count = 0;
|
|
$count = 0;
|
|
foreach ($session['courses'] as $course) {
|
|
foreach ($session['courses'] as $course) {
|
|
@@ -967,11 +968,11 @@ class IndexManager {
|
|
$html_courses_session .= CourseManager :: get_logged_user_course_html($course, $session_id);
|
|
$html_courses_session .= CourseManager :: get_logged_user_course_html($course, $session_id);
|
|
}
|
|
}
|
|
$count_courses_session++;
|
|
$count_courses_session++;
|
|
- $count++;
|
|
|
|
|
|
+ $count++;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$params = array();
|
|
$params = array();
|
|
- if ($count > 0) {
|
|
|
|
|
|
+ if ($count > 0) {
|
|
$params['icon'] = Display::return_icon('window_list.png', $session['session_name'], array('id' => 'session_img_'.$session_id), ICON_SIZE_LARGE);
|
|
$params['icon'] = Display::return_icon('window_list.png', $session['session_name'], array('id' => 'session_img_'.$session_id), ICON_SIZE_LARGE);
|
|
|
|
|
|
if (api_is_drh()) {
|
|
if (api_is_drh()) {
|
|
@@ -983,22 +984,22 @@ class IndexManager {
|
|
}
|
|
}
|
|
|
|
|
|
$params['title'] .= $session_link;
|
|
$params['title'] .= $session_link;
|
|
-
|
|
|
|
|
|
+
|
|
$moved_status = SessionManager::get_session_change_user_reason($session['moved_status']);
|
|
$moved_status = SessionManager::get_session_change_user_reason($session['moved_status']);
|
|
- $moved_status = isset($moved_status) && !empty($moved_status) ? ' ('.$moved_status.')' : null;
|
|
|
|
-
|
|
|
|
- $params['subtitle'] = isset($session['coach_info']) ? $session['coach_info']['complete_name'] : null.$moved_status;
|
|
|
|
|
|
+ $moved_status = isset($moved_status) && !empty($moved_status) ? ' ('.$moved_status.')' : null;
|
|
|
|
+
|
|
|
|
+ $params['subtitle'] = isset($session['coach_info']) ? $session['coach_info']['complete_name'] : null.$moved_status;
|
|
$params['dates'] = $session['date_message'];
|
|
$params['dates'] = $session['date_message'];
|
|
|
|
|
|
if (api_is_platform_admin()) {
|
|
if (api_is_platform_admin()) {
|
|
$params['right_actions'] .= '<a href="'.api_get_path(WEB_CODE_PATH).'admin/resume_session.php?id_session='.$session_id.'">'.Display::return_icon('edit.png', get_lang('Edit'), array('align' => 'absmiddle'), ICON_SIZE_SMALL).'</a>';
|
|
$params['right_actions'] .= '<a href="'.api_get_path(WEB_CODE_PATH).'admin/resume_session.php?id_session='.$session_id.'">'.Display::return_icon('edit.png', get_lang('Edit'), array('align' => 'absmiddle'), ICON_SIZE_SMALL).'</a>';
|
|
- }
|
|
|
|
- $html_sessions .= CourseManager::course_item_html($params, true).$html_courses_session;
|
|
|
|
|
|
+ }
|
|
|
|
+ $html_sessions .= CourseManager::course_item_html($params, true).$html_courses_session;
|
|
}
|
|
}
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
if ($count_courses_session > 0) {
|
|
if ($count_courses_session > 0) {
|
|
- $params = array();
|
|
|
|
|
|
+ $params = array();
|
|
$params['icon'] = Display::return_icon('folder_blue.png', $session_category['session_category']['name'], array(), ICON_SIZE_LARGE);
|
|
$params['icon'] = Display::return_icon('folder_blue.png', $session_category['session_category']['name'], array(), ICON_SIZE_LARGE);
|
|
|
|
|
|
if (api_is_platform_admin()) {
|
|
if (api_is_platform_admin()) {
|
|
@@ -1010,48 +1011,48 @@ class IndexManager {
|
|
if (api_is_platform_admin()) {
|
|
if (api_is_platform_admin()) {
|
|
$params['link'] = api_get_path(WEB_CODE_PATH).'admin/session_category_edit.php?&id='.$session_category['session_category']['id'];
|
|
$params['link'] = api_get_path(WEB_CODE_PATH).'admin/session_category_edit.php?&id='.$session_category['session_category']['id'];
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$session_category_start_date = $session_category['session_category']['date_start'];
|
|
$session_category_start_date = $session_category['session_category']['date_start'];
|
|
$session_category_end_date = $session_category['session_category']['date_end'];
|
|
$session_category_end_date = $session_category['session_category']['date_end'];
|
|
-
|
|
|
|
|
|
+
|
|
if (!empty($session_category_start_date) && $session_category_start_date != '0000-00-00' && !empty($session_category_end_date) && $session_category_end_date != '0000-00-00' ) {
|
|
if (!empty($session_category_start_date) && $session_category_start_date != '0000-00-00' && !empty($session_category_end_date) && $session_category_end_date != '0000-00-00' ) {
|
|
$params['subtitle'] = sprintf(get_lang('FromDateXToDateY'), $session_category['session_category']['date_start'], $session_category['session_category']['date_end']);
|
|
$params['subtitle'] = sprintf(get_lang('FromDateXToDateY'), $session_category['session_category']['date_start'], $session_category['session_category']['date_end']);
|
|
- } else {
|
|
|
|
|
|
+ } else {
|
|
if (!empty($session_category_start_date) && $session_category_start_date != '0000-00-00') {
|
|
if (!empty($session_category_start_date) && $session_category_start_date != '0000-00-00') {
|
|
$params['subtitle'] = get_lang('From').' '.$session_category_start_date;
|
|
$params['subtitle'] = get_lang('From').' '.$session_category_start_date;
|
|
}
|
|
}
|
|
if (!empty($session_category_end_date) && $session_category_end_date != '0000-00-00') {
|
|
if (!empty($session_category_end_date) && $session_category_end_date != '0000-00-00') {
|
|
$params['subtitle'] = get_lang('Until').' '.$session_category_end_date;
|
|
$params['subtitle'] = get_lang('Until').' '.$session_category_end_date;
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }
|
|
$sessions_with_category .= CourseManager::course_item_parent(CourseManager::course_item_html($params, true), $html_sessions);
|
|
$sessions_with_category .= CourseManager::course_item_parent(CourseManager::course_item_html($params, true), $html_sessions);
|
|
- }
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }
|
|
return $sessions_with_category.$sessions_with_no_category.$courses_html.$special_courses;
|
|
return $sessions_with_category.$sessions_with_no_category.$courses_html.$special_courses;
|
|
}
|
|
}
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Shows a welcome message when the user doesn't have any content in the course list
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Shows a welcome message when the user doesn't have any content in the course list
|
|
*/
|
|
*/
|
|
function return_welcome_to_course_block() {
|
|
function return_welcome_to_course_block() {
|
|
- $count_courses = CourseManager::count_courses();
|
|
|
|
|
|
+ $count_courses = CourseManager::count_courses();
|
|
$tpl = $this->tpl->get_template('layout/welcome_to_course.tpl');
|
|
$tpl = $this->tpl->get_template('layout/welcome_to_course.tpl');
|
|
-
|
|
|
|
|
|
+
|
|
$course_catalog_url = api_get_path(WEB_CODE_PATH).'auth/courses.php';
|
|
$course_catalog_url = api_get_path(WEB_CODE_PATH).'auth/courses.php';
|
|
$course_list_url = api_get_path(WEB_PATH).'user_portal.php';
|
|
$course_list_url = api_get_path(WEB_PATH).'user_portal.php';
|
|
-
|
|
|
|
|
|
+
|
|
$this->tpl->assign('course_catalog_url', $course_catalog_url);
|
|
$this->tpl->assign('course_catalog_url', $course_catalog_url);
|
|
$this->tpl->assign('course_list_url', $course_list_url);
|
|
$this->tpl->assign('course_list_url', $course_list_url);
|
|
$this->tpl->assign('course_catalog_link', Display::url(get_lang('here'), $course_catalog_url));
|
|
$this->tpl->assign('course_catalog_link', Display::url(get_lang('here'), $course_catalog_url));
|
|
$this->tpl->assign('course_list_link', Display::url(get_lang('here'), $course_list_url));
|
|
$this->tpl->assign('course_list_link', Display::url(get_lang('here'), $course_list_url));
|
|
$this->tpl->assign('count_courses', $count_courses);
|
|
$this->tpl->assign('count_courses', $count_courses);
|
|
-
|
|
|
|
|
|
+
|
|
return $this->tpl->fetch($tpl);
|
|
return $this->tpl->fetch($tpl);
|
|
}
|
|
}
|
|
|
|
|
|
function return_hot_courses() {
|
|
function return_hot_courses() {
|
|
- return CourseManager::return_hot_courses();
|
|
|
|
|
|
+ return CourseManager::return_hot_courses();
|
|
}
|
|
}
|
|
}
|
|
}
|