123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920 |
- <?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'),
- ];
- }
- } 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'),
- ],
- ];
- if (api_is_session_admin()) {
- if ('true' === api_get_setting('limit_session_admin_role')) {
- $items = array_filter($items, function (array $item) {
- $urls = ['user_list.php', 'user_add.php'];
- return in_array($item['url'], $urls);
- });
- }
- if (true === api_get_configuration_value('limit_session_admin_list_users')) {
- $items = array_filter($items, function (array $item) {
- $urls = ['user_list.php'];
- return !in_array($item['url'], $urls);
- });
- }
- }
- }
- $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[] = [
- // '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'),
- ];
- $items[] = [
- 'url' => 'questions.php',
- 'label' => get_lang('Questions'),
- ];
- $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_plugin_setting('dictionary', 'enable_plugin_dictionary') == 'true') {
- $items[] = [
- 'url' => api_get_path(WEB_PLUGIN_PATH).'dictionary/terms.php',
- 'label' => get_lang('Dictionary'),
- ];
- }
- if (api_get_setting('allow_terms_conditions') == 'true') {
- $items[] = [
- 'url' => 'legal_add.php',
- 'label' => get_lang('TermsAndConditions'),
- ];
- }
- if (api_get_configuration_value('mail_template_system')) {
- $items[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'mail_template/list.php',
- 'label' => get_lang('MailTemplate'),
- ];
- }
- $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'),
- ];
- $items[] = [
- 'url' => 'resource_sequence.php',
- 'label' => get_lang('ResourcesSequencing'),
- ];
- }
- $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'),
- ];
- }
- 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[] = [
- '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'] = '';
- }
- }
- if (!api_get_configuration_value('disable_gdpr')) {
- // Data protection
- $blocks['data_privacy']['icon'] = Display::return_icon(
- 'platform.png',
- get_lang('Platform'),
- [],
- ICON_SIZE_MEDIUM,
- false
- );
- $blocks['data_privacy']['label'] = api_ucfirst(get_lang('PersonalDataPrivacy'));
- $blocks['data_privacy']['class'] = 'block-admin-platform';
- $blocks['data_privacy']['editable'] = false;
- $items = [];
- $items[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'admin/user_list_consent.php',
- 'label' => get_lang('UserList'),
- ];
- $blocks['data_privacy']['items'] = $items;
- $blocks['data_privacy']['extra'] = null;
- $blocks['data_privacy']['search_form'] = null;
- }
- /* 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' => 'https://chamilo.org/',
- 'label' => get_lang('ChamiloHomepage'),
- ];
- $items[] = [
- 'url' => 'https://forum.chamilo.org/',
- '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' => 'https://chamilo.org/extensions',
- 'label' => get_lang('ChamiloExtensions'),
- ];
- $items[] = [
- 'url' => 'https://chamilo.org/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();
|