You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
702 lines
25 KiB
702 lines
25 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* Index page of the admin tools
|
|
* @package chamilo.admin
|
|
*/
|
|
// Resetting the course id.
|
|
$cidReset = true;
|
|
|
|
// Including some necessary chamilo files.
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
|
|
// Setting the section (for the tabs).
|
|
$this_section = SECTION_PLATFORM_ADMIN;
|
|
|
|
// Access restrictions.
|
|
api_protect_admin_script(true);
|
|
|
|
$nameTools = get_lang('PlatformAdmin');
|
|
|
|
$accessUrlId = 0;
|
|
$adminExtraContentDir = api_get_path(SYS_APP_PATH)."home/admin/";
|
|
|
|
if (api_is_multiple_url_enabled()) {
|
|
$accessUrlId = api_get_current_access_url_id();
|
|
|
|
if ($accessUrlId != -1) {
|
|
$urlInfo = api_get_access_url($accessUrlId);
|
|
$url = api_remove_trailing_slash(preg_replace('/https?:\/\//i', '', $urlInfo['url']));
|
|
$cleanUrl = str_replace('/', '-', $url);
|
|
$adminExtraContentDir = api_get_path(SYS_APP_PATH)."home/$cleanUrl/admin/";
|
|
}
|
|
}
|
|
|
|
// Displaying the header
|
|
if (api_is_platform_admin()) {
|
|
if (is_dir(api_get_path(SYS_ARCHIVE_PATH)) &&
|
|
!is_writable(api_get_path(SYS_ARCHIVE_PATH))
|
|
) {
|
|
Display::addFlash(
|
|
Display::return_message(get_lang('ArchivesDirectoryNotWriteableContactAdmin'), 'warning')
|
|
);
|
|
}
|
|
|
|
/* ACTION HANDLING */
|
|
if (!empty($_POST['Register'])) {
|
|
api_register_campus(!$_POST['donotlistcampus']);
|
|
$message = Display :: return_message(get_lang('VersionCheckEnabled'), 'confirmation');
|
|
Display::addFlash($message);
|
|
}
|
|
$keyword_url = Security::remove_XSS((empty($_GET['keyword']) ? '' : $_GET['keyword']));
|
|
}
|
|
$blocks = [];
|
|
|
|
// Instantiate Hook Event for Admin Block
|
|
$hook = HookAdminBlock::create();
|
|
if (!empty($hook)) {
|
|
// If not empty, then notify Pre process to Hook Observers for Admin Block
|
|
$hook->setEventData(['blocks' => $blocks]);
|
|
$data = $hook->notifyAdminBlock(HOOK_EVENT_TYPE_PRE);
|
|
// Check if blocks data is not null
|
|
if (isset($data['blocks'])) {
|
|
// Get modified blocks
|
|
$blocks = $data['blocks'];
|
|
}
|
|
}
|
|
|
|
/* Users */
|
|
$blocks['users']['icon'] = Display::return_icon(
|
|
'members.png',
|
|
get_lang('Users'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['users']['label'] = api_ucfirst(get_lang('Users'));
|
|
$blocks['users']['class'] = 'block-admin-users';
|
|
|
|
$usersBlockExtraFile = "{$adminExtraContentDir}block-admin-users_extra.html";
|
|
|
|
if (file_exists($usersBlockExtraFile)) {
|
|
$blocks['users']['extraContent'] = file_get_contents($usersBlockExtraFile);
|
|
}
|
|
|
|
$search_form = '
|
|
<form method="get" class="form-inline" action="user_list.php">
|
|
<div class="form-group">
|
|
<input class="form-control" type="text" name="keyword" value=""
|
|
aria-label="'.get_lang('Search').'">
|
|
<button class="btn btn-default" type="submit">
|
|
<em class="fa fa-search"></em> ' . get_lang('Search').'
|
|
</button>
|
|
</div>
|
|
</form>';
|
|
$blocks['users']['search_form'] = $search_form;
|
|
|
|
if (api_is_platform_admin()) {
|
|
$blocks['users']['editable'] = true;
|
|
$items = [
|
|
['url' => 'user_list.php', 'label' => get_lang('UserList')],
|
|
['url' => 'user_add.php', 'label' => get_lang('AddUsers')],
|
|
['url' => 'user_export.php', 'label' => get_lang('ExportUserListXMLCSV')],
|
|
['url' => 'user_import.php', 'label' => get_lang('ImportUserListXMLCSV')],
|
|
['url' => 'user_update_import.php', 'label' => get_lang('EditUserListCSV')],
|
|
];
|
|
|
|
if (isset($extAuthSource) && isset($extAuthSource['extldap']) && count($extAuthSource['extldap']) > 0) {
|
|
$items[] = ['url' => 'ldap_users_list.php', 'label' => get_lang('ImportLDAPUsersIntoPlatform')];
|
|
}
|
|
$items[] = ['url' => 'extra_fields.php?type=user', 'label' => get_lang('ManageUserFields')];
|
|
$items[] = ['url'=>'usergroups.php', 'label' => get_lang('Classes')];
|
|
if (api_get_configuration_value('show_link_request_hrm_user')) {
|
|
$items[] = ['url' => 'user_linking_requests.php', 'label' => get_lang('UserLinkingRequests')];
|
|
}
|
|
} elseif (api_is_session_admin() && api_get_configuration_value('limit_session_admin_role')) {
|
|
$items = [
|
|
['url' => 'user_list.php', 'label' => get_lang('UserList')],
|
|
['url' => 'user_add.php', 'label' => get_lang('AddUsers')],
|
|
];
|
|
} else {
|
|
$items = [
|
|
['url' => 'user_list.php', 'label' => get_lang('UserList')],
|
|
['url' => 'user_add.php', 'label' => get_lang('AddUsers')],
|
|
['url' => 'user_import.php', 'label' => get_lang('ImportUserListXMLCSV')],
|
|
['url' => 'usergroups.php', 'label' => get_lang('Classes')],
|
|
];
|
|
}
|
|
|
|
$blocks['users']['items'] = $items;
|
|
$blocks['users']['extra'] = null;
|
|
|
|
if (api_is_platform_admin()) {
|
|
/* Courses */
|
|
$blocks['courses']['icon'] = Display::return_icon(
|
|
'course.png',
|
|
get_lang('Courses'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['courses']['label'] = api_ucfirst(get_lang('Courses'));
|
|
$blocks['courses']['class'] = 'block-admin-courses';
|
|
$blocks['courses']['editable'] = true;
|
|
|
|
$coursesBlockExtraFile = "{$adminExtraContentDir}block-admin-courses_extra.html";
|
|
|
|
if (file_exists($coursesBlockExtraFile)) {
|
|
$blocks['courses']['extraContent'] = file_get_contents($coursesBlockExtraFile);
|
|
}
|
|
|
|
$search_form = ' <form method="get" class="form-inline" action="course_list.php">
|
|
<div class="form-group">
|
|
<input class="form-control" type="text" name="keyword" value=""
|
|
aria-label="'.get_lang('Search').'">
|
|
<button class="btn btn-default" type="submit">
|
|
<em class="fa fa-search"></em> ' . get_lang('Search').'
|
|
</button>
|
|
</div>
|
|
</form>';
|
|
$blocks['courses']['search_form'] = $search_form;
|
|
|
|
$items = [];
|
|
$items[] = ['url' => 'course_list.php', 'label' => get_lang('CourseList')];
|
|
$items[] = ['url' => 'course_add.php', 'label' => get_lang('AddCourse')];
|
|
|
|
if (api_get_setting('course_validation') == 'true') {
|
|
$items[] = ['url' => 'course_request_review.php', 'label' => get_lang('ReviewCourseRequests')];
|
|
$items[] = ['url' => 'course_request_accepted.php', 'label' => get_lang('AcceptedCourseRequests')];
|
|
$items[] = ['url' => 'course_request_rejected.php', 'label' => get_lang('RejectedCourseRequests')];
|
|
}
|
|
|
|
$items[] = ['url' => 'course_export.php', 'label' => get_lang('ExportCourses')];
|
|
$items[] = ['url' => 'course_import.php', 'label' => get_lang('ImportCourses')];
|
|
$items[] = ['url' => 'course_category.php', 'label' => get_lang('AdminCategories')];
|
|
$items[] = ['url' => 'subscribe_user2course.php', 'label' => get_lang('AddUsersToACourse')];
|
|
$items[] = ['url' => 'course_user_import.php', 'label' => get_lang('ImportUsersToACourse')];
|
|
//$items[] = array('url'=>'course_intro_pdf_import.php', 'label' => get_lang('ImportPDFIntroToCourses'));
|
|
|
|
if (api_get_setting('gradebook_enable_grade_model') == 'true') {
|
|
$items[] = ['url' => 'grade_models.php', 'label' => get_lang('GradeModel')];
|
|
}
|
|
|
|
if (isset($extAuthSource) && isset($extAuthSource['ldap']) && count($extAuthSource['ldap']) > 0) {
|
|
$items[] = ['url' => 'ldap_import_students.php', 'label' => get_lang('ImportLDAPUsersIntoCourse')];
|
|
}
|
|
|
|
$items[] = ['url' => 'extra_fields.php?type=course', 'label' => get_lang('ManageCourseFields')];
|
|
|
|
$blocks['courses']['items'] = $items;
|
|
$blocks['courses']['extra'] = null;
|
|
|
|
/* Platform */
|
|
$blocks['platform']['icon'] = Display::return_icon(
|
|
'platform.png',
|
|
get_lang('Platform'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['platform']['label'] = api_ucfirst(get_lang('Platform'));
|
|
$blocks['platform']['class'] = 'block-admin-platform';
|
|
$blocks['platform']['editable'] = true;
|
|
|
|
$platformBlockExtraFile = "{$adminExtraContentDir}block-admin-platform_extra.html";
|
|
|
|
if (file_exists($platformBlockExtraFile)) {
|
|
$blocks['platform']['extraContent'] = file_get_contents($platformBlockExtraFile);
|
|
}
|
|
|
|
$search_form = ' <form method="get" action="settings.php" class="form-inline">
|
|
<div class="form-group">
|
|
<input class="form-control"
|
|
type="text"
|
|
name="search_field" value=""
|
|
aria-label="'.get_lang('Search').'" >
|
|
<input type="hidden" value="search_setting" name="category">
|
|
<button class="btn btn-default" type="submit">
|
|
<em class="fa fa-search"></em> ' . get_lang('Search').'
|
|
</button>
|
|
</div>
|
|
</form>';
|
|
$blocks['platform']['search_form'] = $search_form;
|
|
|
|
$items = [];
|
|
$items[] = ['url' => 'settings.php', 'label' => get_lang('PlatformConfigSettings')];
|
|
$items[] = ['url' => 'languages.php', 'label' => get_lang('Languages')];
|
|
$items[] = ['url' => 'settings.php?category=Plugins', 'label' => get_lang('Plugins')];
|
|
$items[] = ['url' => 'settings.php?category=Regions', 'label' => get_lang('Regions')];
|
|
$items[] = ['url' => 'system_announcements.php', 'label' => get_lang('SystemAnnouncements')];
|
|
$items[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'calendar/agenda_js.php?type=admin',
|
|
'label' => get_lang('GlobalAgenda')
|
|
];
|
|
$items[] = ['url' => 'configure_homepage.php', 'label' => get_lang('ConfigureHomePage')];
|
|
$items[] = ['url' => 'configure_inscription.php', 'label' => get_lang('ConfigureInscription')];
|
|
$items[] = ['url' => 'statistics/index.php', 'label' => get_lang('Statistics')];
|
|
$items[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'mySpace/company_reports.php',
|
|
'label' => get_lang('Reports')
|
|
];
|
|
$items[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'admin/teacher_time_report.php',
|
|
'label' => get_lang('TeacherTimeReport')
|
|
];
|
|
|
|
if (api_get_configuration_value('chamilo_cms')) {
|
|
$items[] = [
|
|
'url' => api_get_path(WEB_PATH).'web/app_dev.php/administration/dashboard',
|
|
'label' => get_lang('CMS')
|
|
];
|
|
}
|
|
|
|
/* Event settings */
|
|
|
|
if (api_get_setting('activate_email_template') == 'true') {
|
|
// @deprecated to be removed in 2.x
|
|
$items[] = ['url' => 'event_controller.php?action=listing', 'label' => get_lang('EventMessageManagement')];
|
|
}
|
|
|
|
$items[] = ['url' => 'extra_field_list.php', 'label' => get_lang('ExtraFields')];
|
|
|
|
if (!empty($_configuration['multiple_access_urls'])) {
|
|
if (api_is_global_platform_admin()) {
|
|
$items[] = ['url' => 'access_urls.php', 'label' => get_lang('ConfigureMultipleAccessURLs')];
|
|
}
|
|
}
|
|
|
|
|
|
if (api_get_setting('allow_terms_conditions') == 'true') {
|
|
$items[] = ['url' => 'legal_add.php', 'label' => get_lang('TermsAndConditions')];
|
|
}
|
|
$blocks['platform']['items'] = $items;
|
|
$blocks['platform']['extra'] = null;
|
|
}
|
|
|
|
/* Sessions */
|
|
$blocks['sessions']['icon'] = Display::return_icon(
|
|
'session.png',
|
|
get_lang('Sessions'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['sessions']['label'] = api_ucfirst(get_lang('Sessions'));
|
|
$blocks['sessions']['class'] = 'block-admin-sessions';
|
|
|
|
$sessionsBlockExtraFile = "{$adminExtraContentDir}block-admin-sessions_extra.html";
|
|
|
|
if (file_exists($sessionsBlockExtraFile)) {
|
|
$blocks['sessions']['extraContent'] = file_get_contents($sessionsBlockExtraFile);
|
|
}
|
|
|
|
if (api_is_platform_admin()) {
|
|
$blocks['sessions']['editable'] = true;
|
|
}
|
|
$sessionPath = api_get_path(WEB_CODE_PATH).'session/';
|
|
|
|
$search_form = ' <form method="GET" class="form-inline" action="'.$sessionPath.'session_list.php">
|
|
<div class="form-group">
|
|
<input class="form-control"
|
|
type="text"
|
|
name="keyword"
|
|
value=""
|
|
aria-label="'.get_lang('Search').'">
|
|
<button class="btn btn-default" type="submit">
|
|
<em class="fa fa-search"></em> ' . get_lang('Search').'
|
|
</button>
|
|
</div>
|
|
</form>';
|
|
$blocks['sessions']['search_form'] = $search_form;
|
|
$items = [];
|
|
$items[] = ['url' => $sessionPath.'session_list.php', 'label' => get_lang('ListSession')];
|
|
$items[] = ['url' => $sessionPath.'session_add.php', 'label' => get_lang('AddSession')];
|
|
$items[] = ['url' => $sessionPath.'session_category_list.php', 'label' => get_lang('ListSessionCategory')];
|
|
$items[] = ['url' => $sessionPath.'session_import.php', 'label' => get_lang('ImportSessionListXMLCSV')];
|
|
$items[] = ['url' => $sessionPath.'session_import_drh.php', 'label' => get_lang('ImportSessionDrhList')];
|
|
if (isset($extAuthSource) && isset($extAuthSource['ldap']) && count($extAuthSource['ldap']) > 0) {
|
|
$items[] = [
|
|
'url' => 'ldap_import_students_to_session.php',
|
|
'label' => get_lang('ImportLDAPUsersIntoSession')
|
|
];
|
|
}
|
|
$items[] = [
|
|
'url' => $sessionPath.'session_export.php',
|
|
'label' => get_lang('ExportSessionListXMLCSV'),
|
|
];
|
|
|
|
if (api_is_global_platform_admin()) {
|
|
$items[] = [
|
|
'url' => '../coursecopy/copy_course_session.php',
|
|
'label' => get_lang('CopyFromCourseInSessionToAnotherSession')
|
|
];
|
|
}
|
|
|
|
$allowCareer = api_get_configuration_value('allow_session_admin_read_careers');
|
|
|
|
if (api_is_platform_admin() || ($allowCareer && api_is_session_admin())) {
|
|
// option only visible in development mode. Enable through code if required
|
|
if (is_dir(api_get_path(SYS_TEST_PATH).'datafiller/')) {
|
|
$items[] = ['url' => 'user_move_stats.php', 'label' => get_lang('MoveUserStats')];
|
|
}
|
|
$items[] = ['url' => 'career_dashboard.php', 'label' => get_lang('CareersAndPromotions')];
|
|
$items[] = ['url' => 'extra_fields.php?type=session', 'label' => get_lang('ManageSessionFields')];
|
|
}
|
|
|
|
$blocks['sessions']['items'] = $items;
|
|
$blocks['sessions']['extra'] = null;
|
|
|
|
/* Settings */
|
|
if (api_is_platform_admin()) {
|
|
$blocks['settings']['icon'] = Display::return_icon(
|
|
'settings.png',
|
|
get_lang('System'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['settings']['label'] = api_ucfirst(get_lang('System'));
|
|
$blocks['settings']['class'] = 'block-admin-settings';
|
|
|
|
$items = [];
|
|
$items[] = [
|
|
'url' => 'archive_cleanup.php',
|
|
'label' => get_lang('ArchiveDirCleanup')
|
|
];
|
|
|
|
$items[] = [
|
|
'url' => 'special_exports.php',
|
|
'label' => get_lang('SpecialExports')
|
|
];
|
|
$items[] = [
|
|
'url' => 'system_status.php',
|
|
'label' => get_lang('SystemStatus')
|
|
];
|
|
if (is_dir(api_get_path(SYS_TEST_PATH).'datafiller/')) {
|
|
$items[] = [
|
|
'url' => 'filler.php',
|
|
'label' => get_lang('DataFiller')
|
|
];
|
|
}
|
|
|
|
$items[] = [
|
|
'url' => 'resource_sequence.php',
|
|
'label' => get_lang('ResourcesSequencing')
|
|
];
|
|
if (is_dir(api_get_path(SYS_TEST_PATH))) {
|
|
$items[] = [
|
|
'url' => 'email_tester.php',
|
|
'label' => get_lang('EMailTester')
|
|
];
|
|
}
|
|
|
|
$items[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'ticket/tickets.php',
|
|
'label' => get_lang('TicketSystem')
|
|
];
|
|
|
|
if (api_get_configuration_value('db_manager_enabled') == true &&
|
|
api_is_global_platform_admin()
|
|
) {
|
|
$host = $_configuration['db_host'];
|
|
$username = $_configuration['db_user'];
|
|
$databaseName = $_configuration['main_database'];
|
|
|
|
$items[] = [
|
|
'url' => "db.php?username=$username&db=$databaseName&server=$host",
|
|
'label' => get_lang('DatabaseManager')
|
|
];
|
|
}
|
|
|
|
$blocks['settings']['items'] = $items;
|
|
$blocks['settings']['extra'] = null;
|
|
$blocks['settings']['search_form'] = null;
|
|
|
|
// Skills
|
|
if (Skill::isToolAvailable()) {
|
|
$blocks['skills']['icon'] = Display::return_icon(
|
|
'skill-badges.png',
|
|
get_lang('Skills'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['skills']['label'] = get_lang('Skills');
|
|
$blocks['skills']['class'] = 'block-admin-skills';
|
|
|
|
$items = [];
|
|
$items[] = [
|
|
'url' => 'skills_wheel.php',
|
|
'label' => get_lang('SkillsWheel')
|
|
];
|
|
$items[] = [
|
|
'url' => 'skills_import.php',
|
|
'label' => get_lang('SkillsImport')
|
|
];
|
|
$items[] = [
|
|
'url' => 'skill_list.php',
|
|
'label' => get_lang('ManageSkills')
|
|
];
|
|
$items[] = [
|
|
'url' => 'skill.php',
|
|
'label' => get_lang('ManageSkillsLevels')
|
|
];
|
|
|
|
$items[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'social/skills_ranking.php',
|
|
'label' => get_lang('SkillsRanking')
|
|
];
|
|
$items[] = [
|
|
'url' => 'skills_gradebook.php',
|
|
'label' => get_lang('SkillsAndGradebooks')
|
|
];
|
|
/*$items[] = array(
|
|
'url' => api_get_path(WEB_CODE_PATH).'admin/skill_badge.php',
|
|
'label' => get_lang('Badges')
|
|
);*/
|
|
$blocks['skills']['items'] = $items;
|
|
$blocks['skills']['extra'] = null;
|
|
$blocks['skills']['search_form'] = null;
|
|
}
|
|
|
|
$allow = api_get_configuration_value('gradebook_dependency');
|
|
if ($allow) {
|
|
$blocks['gradebook']['icon'] = Display::return_icon(
|
|
'gradebook.png',
|
|
get_lang('Gradebook'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['gradebook']['label'] = get_lang('Gradebook');
|
|
$blocks['gradebook']['class'] = 'block-admin-gradebook';
|
|
|
|
$items = [];
|
|
$items[] = [
|
|
'url' => 'gradebook_list.php',
|
|
'label' => get_lang('List')
|
|
];
|
|
$blocks['gradebook']['items'] = $items;
|
|
$blocks['gradebook']['extra'] = null;
|
|
$blocks['gradebook']['search_form'] = null;
|
|
}
|
|
}
|
|
|
|
if (api_is_platform_admin()) {
|
|
/* Plugins */
|
|
global $_plugins;
|
|
if (isset($_plugins['menu_administrator']) &&
|
|
count($_plugins['menu_administrator']) > 0
|
|
) {
|
|
$menuAdministratorItems = $_plugins['menu_administrator'];
|
|
|
|
if ($menuAdministratorItems) {
|
|
$blocks['plugins']['icon'] = Display::return_icon(
|
|
'plugins.png',
|
|
get_lang('Plugins'),
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['plugins']['label'] = get_lang('Plugins');
|
|
$blocks['plugins']['class'] = 'block-admin-platform';
|
|
$blocks['plugins']['editable'] = true;
|
|
|
|
$plugin_obj = new AppPlugin();
|
|
$items = [];
|
|
|
|
foreach ($menuAdministratorItems as $pluginName) {
|
|
$pluginInfo = $plugin_obj->getPluginInfo($pluginName, true);
|
|
/** @var \Plugin $plugin */
|
|
$plugin = $pluginInfo['obj'];
|
|
$pluginUrl = $plugin->getAdminUrl();
|
|
|
|
if (empty($pluginUrl)) {
|
|
continue;
|
|
}
|
|
|
|
$items[] = [
|
|
'url' => $pluginUrl,
|
|
'label' => $pluginInfo['title']
|
|
];
|
|
}
|
|
|
|
$blocks['plugins']['items'] = $items;
|
|
$blocks['plugins']['extra'] = '';
|
|
}
|
|
}
|
|
|
|
/* Chamilo.org */
|
|
|
|
$blocks['chamilo']['icon'] = Display::return_icon(
|
|
'platform.png',
|
|
'Chamilo.org',
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['chamilo']['label'] = 'Chamilo.org';
|
|
$blocks['chamilo']['class'] = 'block-admin-chamilo';
|
|
|
|
$items = [];
|
|
$items[] = ['url' => 'http://www.chamilo.org/', 'label' => get_lang('ChamiloHomepage')];
|
|
$items[] = ['url' => 'http://www.chamilo.org/forum', 'label' => get_lang('ChamiloForum')];
|
|
|
|
$items[] = ['url' => '../../documentation/installation_guide.html', 'label' => get_lang('InstallationGuide')];
|
|
$items[] = ['url' => '../../documentation/changelog.html', 'label' => get_lang('ChangesInLastVersion')];
|
|
$items[] = ['url' => '../../documentation/credits.html', 'label' => get_lang('ContributorsList')];
|
|
$items[] = ['url' => '../../documentation/security.html', 'label' => get_lang('SecurityGuide')];
|
|
$items[] = ['url' => '../../documentation/optimization.html', 'label' => get_lang('OptimizationGuide')];
|
|
$items[] = ['url' => 'http://www.chamilo.org/extensions', 'label' => get_lang('ChamiloExtensions')];
|
|
$items[] = [
|
|
'url' => 'http://www.chamilo.org/en/providers',
|
|
'label' => get_lang('ChamiloOfficialServicesProviders')
|
|
];
|
|
|
|
$blocks['chamilo']['items'] = $items;
|
|
$blocks['chamilo']['extra'] = null;
|
|
$blocks['chamilo']['search_form'] = null;
|
|
|
|
// Version check
|
|
$blocks['version_check']['icon'] = Display::return_icon(
|
|
'platform.png',
|
|
'Chamilo.org',
|
|
[],
|
|
ICON_SIZE_MEDIUM,
|
|
false
|
|
);
|
|
$blocks['version_check']['label'] = get_lang('VersionCheck');
|
|
$blocks['version_check']['extra'] = '<div class="admin-block-version"></div>';
|
|
$blocks['version_check']['search_form'] = null;
|
|
$blocks['version_check']['items'] = '<div class="block-admin-version_check"></div>';
|
|
$blocks['version_check']['class'] = '';
|
|
|
|
// Check Hook Event for Admin Block Object
|
|
if (!empty($hook)) {
|
|
// If not empty, then notify Post process to Hook Observers for Admin Block
|
|
$hook->setEventData(['blocks' => $blocks]);
|
|
$data = $hook->notifyAdminBlock(HOOK_EVENT_TYPE_POST);
|
|
// Check if blocks data is not null
|
|
if (isset($data['blocks'])) {
|
|
// Get modified blocks
|
|
$blocks = $data['blocks'];
|
|
}
|
|
}
|
|
|
|
//Hack for fix migration on session_rel_user
|
|
$tableColumns = Database::getManager()
|
|
->getConnection()
|
|
->getSchemaManager()
|
|
->listTableColumns(
|
|
Database::get_main_table(TABLE_MAIN_SESSION_USER)
|
|
);
|
|
|
|
if (!array_key_exists('duration', $tableColumns)) {
|
|
try {
|
|
$dbSchema = Database::getManager()->getConnection()->getSchemaManager();
|
|
$durationColumn = new \Doctrine\DBAL\Schema\Column(
|
|
'duration',
|
|
Doctrine\DBAL\Types\Type::getType(\Doctrine\DBAL\Types\Type::INTEGER),
|
|
['notnull' => false]
|
|
);
|
|
$tableDiff = new \Doctrine\DBAL\Schema\TableDiff('session_rel_user', [$durationColumn]);
|
|
$dbSchema->alterTable($tableDiff);
|
|
} catch (Exception $e) {
|
|
error_log($e->getMessage());
|
|
}
|
|
}
|
|
//end hack
|
|
}
|
|
$admin_ajax_url = api_get_path(WEB_AJAX_PATH).'admin.ajax.php';
|
|
|
|
$tpl = new Template();
|
|
|
|
// Display the Site Use Cookie Warning Validation
|
|
$useCookieValidation = api_get_setting('cookie_warning');
|
|
if ($useCookieValidation === 'true') {
|
|
if (isset($_POST['acceptCookies'])) {
|
|
api_set_site_use_cookie_warning_cookie();
|
|
} elseif (!api_site_use_cookie_warning_cookie_exist()) {
|
|
if (Template::isToolBarDisplayedForUser()) {
|
|
$tpl->assign('toolBarDisplayed', true);
|
|
} else {
|
|
$tpl->assign('toolBarDisplayed', false);
|
|
}
|
|
$tpl->assign('displayCookieUsageWarning', true);
|
|
}
|
|
}
|
|
|
|
$tpl->assign('web_admin_ajax_url', $admin_ajax_url);
|
|
$tpl->assign('blocks', $blocks);
|
|
|
|
if (api_is_platform_admin()) {
|
|
$extraContentForm = new FormValidator(
|
|
'block_extra_data',
|
|
'post',
|
|
'#',
|
|
null,
|
|
[
|
|
'id' => 'block-extra-data',
|
|
'class' => ''
|
|
],
|
|
FormValidator::LAYOUT_BOX_NO_LABEL
|
|
);
|
|
$extraContentFormRenderer = $extraContentForm->getDefaultRenderer();
|
|
|
|
if ($extraContentForm->validate()) {
|
|
$extraData = $extraContentForm->getSubmitValues();
|
|
$extraData = array_map(['Security', 'remove_XSS'], $extraData);
|
|
|
|
if (!empty($extraData['block'])) {
|
|
if (!is_dir($adminExtraContentDir)) {
|
|
mkdir(
|
|
$adminExtraContentDir,
|
|
api_get_permissions_for_new_directories(),
|
|
true
|
|
);
|
|
}
|
|
|
|
if (!is_writable($adminExtraContentDir)) {
|
|
die;
|
|
}
|
|
|
|
$fullFilePath = $adminExtraContentDir.$extraData['block'];
|
|
$fullFilePath .= "_extra.html";
|
|
|
|
file_put_contents($fullFilePath, $extraData['extra_content']);
|
|
|
|
header('Location: '.api_get_self());
|
|
exit;
|
|
}
|
|
}
|
|
|
|
$extraContentForm->addTextarea(
|
|
'extra_content',
|
|
null,
|
|
['id' => 'extra_content']
|
|
);
|
|
$extraContentFormRenderer->setElementTemplate(
|
|
'<div class="form-group">{element}</div>',
|
|
'extra_content'
|
|
);
|
|
$extraContentForm->addElement(
|
|
'hidden',
|
|
'block',
|
|
null,
|
|
[
|
|
'id' => 'extra-block'
|
|
]
|
|
);
|
|
$extraContentForm->addButtonExport(
|
|
get_lang('Save'),
|
|
'submit_extra_content'
|
|
);
|
|
|
|
$tpl->assign('extraDataForm', $extraContentForm->returnForm());
|
|
}
|
|
|
|
// The template contains the call to the AJAX version checker
|
|
$admin_template = $tpl->get_template('admin/settings_index.tpl');
|
|
$content = $tpl->fetch($admin_template);
|
|
$tpl->assign('content', $content);
|
|
$tpl->display_one_col_template();
|
|
|