1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087 |
- <?php
- /* For licensing terms, see /license.txt */
- use Chamilo\CoreBundle\Framework\Container;
- /**
- * Code to display the course settings form (for the course admin)
- * and activate the changes.
- *
- * See ./inc/conf/course_info.conf.php for settings
- *
- * @todo Take those config settings into account in this script
- *
- * @author Patrick Cool <patrick.cool@UGent.be>
- * @author Roan Embrechts, refactoring and improved course visibility|subscribe|unsubscribe options
- * @author Julio Montoya <gugli100@gmail.com> Jquery support + lots of fixes
- */
- require_once __DIR__.'/../inc/global.inc.php';
- $current_course_tool = TOOL_COURSE_SETTING;
- $this_section = SECTION_COURSES;
- $nameTools = get_lang('Settings');
- api_protect_course_script(true);
- api_block_anonymous_users();
- $_course = api_get_course_info();
- $courseEntity = api_get_course_entity();
- $currentCourseRepository = $_course['path'];
- $isAllowToEdit = api_is_course_admin() || api_is_platform_admin();
- $course_code = api_get_course_id();
- $courseId = api_get_course_int_id();
- $repo = Container::getCourseRepository();
- $em = $repo->getEntityManager();
- $isEditable = true;
- if (!$isAllowToEdit) {
- api_not_allowed(true);
- }
- $router = Container::getRouter();
- $translator = Container::getTranslator();
- $show_delete_watermark_text_message = false;
- if (api_get_setting('pdf_export_watermark_by_course') == 'true') {
- if (isset($_GET['delete_watermark'])) {
- PDF::delete_watermark($course_code);
- $show_delete_watermark_text_message = true;
- }
- }
- $categories = CourseCategory::getCategoriesCanBeAddedInCourse($_course['categoryCode']);
- $formOptionsArray = [];
- // Build the form
- $form = new FormValidator(
- 'update_course',
- 'post',
- api_get_self().'?'.api_get_cidreq()
- );
- // COURSE SETTINGS
- function card_settings_open($id, $title, $open = false, $icon, $parent)
- {
- $html = '<div class="card">';
- $html .= '<div class="card-header" id="card_'.$id.'">';
- $html .= '<h5 class="card-title">';
- $html .= '<a role="button" class="'.(($open) ? 'collapse' : ' ').'" data-toggle="collapse" data-target="#collapse_'.$id.'" aria-expanded="true" aria-controls="collapse_'.$id.'">';
- if ($icon) {
- $html .= Display::return_icon($icon, null, null, ICON_SIZE_SMALL);
- }
- $html .= $title;
- $html .= '</a></h5></div>';
- $html .= '<div id="collapse_'.$id.'" class="collapse show" aria-labelledby="heading_'.$id.'" data-parent="#'.$parent.'">';
- $html .= '<div class="card-body">';
- return $html;
- }
- function card_settings_close()
- {
- $html = '</div></div></div>';
- return $html;
- }
- $form->addHtml(card_settings_open('course_settings', get_lang('Course settings'), true, 'settings.png', 'accordionSettings'));
- $image = '';
- // Display course picture
- $course_path = api_get_path(SYS_COURSE_PATH).$currentCourseRepository; // course path
- $illustration = $courseEntity->getResourceNodeIllustration();
- if (!empty($illustration)) {
- $course_medium_image = Container::getRouter()->generate(
- 'core_tool_resource',
- ['id' => $illustration->getId()]
- );
- $image = '<div class="row"><label class="col-md-2 control-label">'.get_lang('Image').'</label>
- <div class="col-md-8"><img class="img-thumbnail" src="'.$course_medium_image.'" /></div></div>';
- }
- $form->addText('title', get_lang('Title'), true);
- $form->applyFilter('title', 'html_filter');
- $form->applyFilter('title', 'trim');
- $form->addElement(
- 'select',
- 'category_code',
- get_lang('Category'),
- $categories,
- ['style' => 'width:350px', 'id' => 'category_code']
- );
- $form->addSelectLanguage(
- 'course_language',
- [get_lang('Language'), get_lang('This language will be valid for every visitor of your courses portal')]
- );
- $group = [
- $form->createElement('radio', 'show_course_in_user_language', null, get_lang('Yes'), 1),
- $form->createElement('radio', 'show_course_in_user_language', null, get_lang('No'), 2),
- ];
- $form->addGroup($group, '', [get_lang('Show course in user\'s language')]);
- $form->addText('department_name', get_lang('Department'), false);
- $form->applyFilter('department_name', 'html_filter');
- $form->applyFilter('department_name', 'trim');
- $form->addText('department_url', get_lang('Department URL'), false);
- $form->applyFilter('department_url', 'html_filter');
- // Extra fields
- $extra_field = new ExtraField('course');
- $extraFieldAdminPermissions = false;
- $showOnlyTheseFields = ['tags', 'video_url', 'course_hours_duration', 'max_subscribed_students'];
- $extra = $extra_field->addElements(
- $form,
- $courseId,
- [],
- false,
- false,
- $showOnlyTheseFields,
- [],
- false
- );
- //Tags ExtraField
- $htmlHeadXtra[] = '
- <script>
- $(function() {
- '.$extra['jquery_ready_content'].'
- });
- </script>';
- // Picture
- $form->addFile(
- 'picture',
- get_lang('Add a picture'),
- ['id' => 'picture', 'class' => 'picture-form', 'crop_image' => true]
- );
- $allowed_picture_types = api_get_supported_image_extensions(false);
- $form->addHtml($image);
- $form->addRule(
- 'picture',
- get_lang('Only PNG, JPG or GIF images allowed').' ('.implode(',', $allowed_picture_types).')',
- 'filetype',
- $allowed_picture_types
- );
- $form->addElement('checkbox', 'delete_picture', null, get_lang('Delete picture'));
- if (api_get_setting('pdf_export_watermark_by_course') == 'true') {
- $url = PDF::get_watermark($course_code);
- $form->addText('pdf_export_watermark_text', get_lang('PDF watermark text'), false, ['size' => '60']);
- $form->addElement('file', 'pdf_export_watermark_path', get_lang('Upload a watermark image'));
- if ($url != false) {
- $delete_url = '<a href="?delete_watermark">'.Display::return_icon('delete.png', get_lang('Remove picture')).'</a>';
- $form->addElement(
- 'html',
- '<div class="row"><div class="form"><a href="'.$url.'">'.$url.' '.$delete_url.'</a></div></div>'
- );
- }
- $form->addRule(
- 'pdf_export_watermark_path',
- get_lang('Only PNG, JPG or GIF images allowed').' ('.implode(',', $allowed_picture_types).')',
- 'filetype',
- $allowed_picture_types
- );
- }
- if (api_get_setting('allow_course_theme') == 'true') {
- $group = [];
- $group[] = $form->createElement(
- 'SelectTheme',
- 'course_theme',
- null,
- ['id' => 'course_theme_id']
- );
- $form->addGroup($group, '', [get_lang('Style sheets')]);
- }
- $form->addElement('label', get_lang('Space Available'), format_file_size(DocumentManager::get_course_quota()));
- $scoreModels = ExerciseLib::getScoreModels();
- if (!empty($scoreModels)) {
- $options = ['' => get_lang('none')];
- foreach ($scoreModels['models'] as $item) {
- $options[$item['id']] = get_lang($item['name']);
- }
- $form->addSelect('score_model_id', get_lang('Score model'), $options);
- }
- $form->addButtonSave(get_lang('Save settings'), 'submit_save');
- $form->addHtml(card_settings_close());
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'visibility',
- get_lang('Course access'),
- get_lang('Public - access allowed for the whole world'),
- COURSE_VISIBILITY_OPEN_WORLD
- );
- $group[] = $form->createElement(
- 'radio',
- 'visibility',
- null,
- get_lang(' Open - access allowed for users registered on the platform'),
- COURSE_VISIBILITY_OPEN_PLATFORM
- );
- $group[] = $form->createElement('radio', 'visibility', null, get_lang('Private access (access authorized to group members only)'), COURSE_VISIBILITY_REGISTERED);
- $group[] = $form->createElement(
- 'radio',
- 'visibility',
- null,
- get_lang('Closed - the course is only accessible to the teachers'),
- COURSE_VISIBILITY_CLOSED
- );
- // The "hidden" visibility is only available to portal admins
- if (api_is_platform_admin()) {
- $group[] = $form->createElement(
- 'radio',
- 'visibility',
- null,
- get_lang('Hidden - Completely hidden to all users except the administrators'),
- COURSE_VISIBILITY_HIDDEN
- );
- }
- $groupElement = $form->addGroup(
- $group,
- '',
- [get_lang('Course access'), get_lang('Course accessConfigTip')],
- null,
- null,
- true
- );
- $url = api_get_path(WEB_CODE_PATH)."auth/inscription.php?c=$course_code&e=1";
- $url = Display::url($url, $url);
- $label = $form->addLabel(get_lang('Direct link'), sprintf(get_lang('Course settingsRegisterDirect link'), $url), true);
- $group2 = [];
- $group2[] = $form->createElement('radio', 'subscribe', get_lang('Subscription'), get_lang('Allowed'), 1);
- $group2[] = $form->createElement('radio', 'subscribe', null, get_lang('This function is only available to trainers'), 0);
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $group3[] = $form->createElement(
- 'radio',
- 'unsubscribe',
- get_lang('Unsubscribe'),
- get_lang('Users are allowed to unsubscribe from this course'),
- 1
- );
- $group3[] = $form->createElement('radio', 'unsubscribe', null, get_lang('NotUsers are allowed to unsubscribe from this course'), 0);
- $text = $form->createElement(
- 'text',
- 'course_registration_password',
- get_lang('Course registration password'),
- false,
- ['size' => '60']
- );
- $checkBoxActiveLegal = $form->createElement(
- 'checkbox',
- 'activate_legal',
- [null, get_lang('Show a legal notice when entering the course')],
- get_lang('Enable legal terms')
- );
- $textAreaLegal = $form->createElement('textarea', 'legal', get_lang('Legal agreement for this course'), ['rows' => 8]);
- $elements = [
- $groupElement,
- $label,
- get_lang('Subscription') => $group2,
- get_lang('Unsubscribe') => $group3,
- $text,
- $checkBoxActiveLegal,
- $textAreaLegal,
- $myButton,
- ];
- $form->addPanelOption(
- 'course_access',
- get_lang('Course access'),
- $elements,
- 'course.png',
- false,
- 'accordionSettings'
- );
- // Documents
- $globalGroup = [];
- if (api_get_setting('documents_default_visibility_defined_in_course') == 'true') {
- $group = [
- $form->createElement('radio', 'documents_default_visibility', null, get_lang('Visible'), 'visible'),
- $form->createElement('radio', 'documents_default_visibility', null, get_lang('invisible'), 'invisible'),
- ];
- $globalGroup[get_lang('Default visibility of new documents')] = $group;
- }
- $group = [
- $form->createElement('radio', 'show_system_folders', null, get_lang('Yes'), 1),
- $form->createElement('radio', 'show_system_folders', null, get_lang('No'), 2),
- ];
- $globalGroup[get_lang('Show system folders.')] = $group;
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'enable_document_auto_launch',
- get_lang('Auto-launch for documents'),
- get_lang('Redirect to the document list'),
- 1
- );
- $group[] = $form->createElement('radio', 'enable_document_auto_launch', null, get_lang('Deactivate'), 0);
- $globalGroup[get_lang('Auto-launch for documents')] = $group;
- $globalGroup[] = $myButton;
- $form->addPanelOption(
- 'documents',
- get_lang('Documents'),
- $globalGroup,
- 'folder.png',
- false,
- 'accordionSettings'
- );
- $globalGroup = [];
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_to_teacher_on_new_user_in_course',
- get_lang('E-mail teacher when a new user auto-subscribes'),
- get_lang('E-mail teacher when a new user auto-subscribesEnable'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_to_teacher_on_new_user_in_course',
- null,
- get_lang('E-mail teacher when a new user auto-subscribesToTeacharAndTutor'),
- 2
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_to_teacher_on_new_user_in_course',
- null,
- get_lang('E-mail teacher when a new user auto-subscribesDisable'),
- 0
- );
- $globalGroup[get_lang('E-mail teacher when a new user auto-subscribes')] = $group;
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_students_on_new_homework',
- get_lang('E-mail students on assignment creation'),
- get_lang('E-mail students on assignment creationEnable'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_students_on_new_homework',
- null,
- get_lang('E-mail students on assignment creationToHrmEnable'),
- 2
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_students_on_new_homework',
- null,
- get_lang('E-mail students on assignment creationDisable'),
- 0
- );
- $globalGroup[get_lang('E-mail students on assignment creation')] = $group;
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_manager_on_new_doc',
- get_lang('E-mail on assignments submission by students'),
- get_lang('E-mail on assignments submission by studentsActivate'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_manager_on_new_doc',
- null,
- get_lang('E-mail on assignments submission by studentsActivateOnlyForTeachers'),
- 3
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_manager_on_new_doc',
- null,
- get_lang('E-mail on assignments submission by studentsActivateOnlyForStudents'),
- 2
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_manager_on_new_doc',
- null,
- get_lang('E-mail on assignments submission by studentsDeactivate'),
- 0
- );
- $globalGroup[get_lang('E-mail on assignments submission by students')] = $group;
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_on_new_doc_dropbox',
- get_lang('E-mail users on dropbox file reception'),
- get_lang('E-mail users on dropbox file receptionActivate'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_alert_on_new_doc_dropbox',
- null,
- get_lang('E-mail users on dropbox file receptionDeactivate'),
- 0
- );
- $globalGroup[get_lang('E-mail users on dropbox file reception')] = $group;
- // Exercises notifications
- $emailAlerts = ExerciseLib::getNotificationSettings();
- $group = [];
- foreach ($emailAlerts as $itemId => $label) {
- $group[] = $form->createElement(
- 'checkbox',
- 'email_alert_manager_on_new_quiz[]',
- null,
- $label,
- ['value' => $itemId]
- );
- }
- $globalGroup[get_lang('Tests')] = $group;
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'email_to_teachers_on_new_work_feedback',
- get_lang('E-mail to teachers on new user\'s student publication feedback.'),
- get_lang('Yes'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'email_to_teachers_on_new_work_feedback',
- null,
- get_lang('No'),
- 2
- );
- $globalGroup[get_lang('E-mail to teachers on new user\'s student publication feedback.')] = $group;
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup[] = $myButton;
- $form->addPanelOption(
- 'email-notifications',
- get_lang('E-mail notifications'),
- $globalGroup,
- 'mail.png',
- false,
- 'accordionSettings'
- );
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'allow_user_edit_agenda',
- get_lang('Allow learners to edit the agenda'),
- get_lang('Allow learners to edit the agendaActivate'),
- 1
- );
- $group[] = $form->createElement('radio', 'allow_user_edit_agenda', null, get_lang('Allow learners to edit the agendaDeactivate'), 0);
- $group2 = [];
- $group2[] = $form->createElement(
- 'radio',
- 'allow_user_edit_announcement',
- get_lang('Allow learners to edit announcements'),
- get_lang('Allow learners to edit announcementsActivate'),
- 1
- );
- $group2[] = $form->createElement(
- 'radio',
- 'allow_user_edit_announcement',
- null,
- get_lang('Allow learners to edit announcementsDeactivate'),
- 0
- );
- $group3 = [];
- $group3[] = $form->createElement(
- 'radio',
- 'allow_user_image_forum',
- get_lang('User picture in forum'),
- get_lang('User picture in forumActivate'),
- 1
- );
- $group3[] = $form->createElement('radio', 'allow_user_image_forum', null, get_lang('User picture in forumDeactivate'), 0);
- $group4 = [];
- $group4[] = $form->createElement(
- 'radio',
- 'allow_user_view_user_list',
- get_lang('Allow user view user list'),
- get_lang('Allow user view user listActivate'),
- 1
- );
- $group4[] = $form->createElement(
- 'radio',
- 'allow_user_view_user_list',
- null,
- get_lang('Allow user view user listDeactivate'),
- 0
- );
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup = [
- get_lang('Allow learners to edit the agenda') => $group,
- get_lang('Allow learners to edit announcements') => $group2,
- get_lang('User picture in forum') => $group3,
- get_lang('Allow user view user list') => $group4,
- '' => $myButton,
- ];
- $form->addPanelOption(
- 'users',
- get_lang('User rights'),
- $globalGroup,
- 'user.png',
- false,
- 'accordionSettings'
- );
- // CHAT SETTINGS
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'allow_open_chat_window',
- get_lang('Open chat in a new Window'),
- get_lang('Activate open the chat in a new window'),
- 1
- );
- $group[] = $form->createElement('radio', 'allow_open_chat_window', null, get_lang('Deactivate open the chat in a new window'), 0);
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup = [
- get_lang('Open chat in a new Window') => $group,
- '' => $myButton,
- ];
- $form->addPanelOption(
- 'chat',
- get_lang('Chat settings'),
- $globalGroup,
- 'chat.png',
- false,
- 'accordionSettings'
- );
- $globalGroup = [];
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'enable_lp_auto_launch',
- get_lang('Enable learning path auto-launch'),
- get_lang('Redirect to a selected learning path'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'enable_lp_auto_launch',
- get_lang('Enable learning path auto-launch'),
- get_lang('Redirect to the learning paths list'),
- 2
- );
- $group[] = $form->createElement('radio', 'enable_lp_auto_launch', null, get_lang('Deactivate'), 0);
- $globalGroup[get_lang('Enable learning path auto-launch')] = $group;
- if (api_get_setting('allow_course_theme') == 'true') {
- // Allow theme into Learning path
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'allow_learning_path_theme',
- get_lang('Enable course themes'),
- get_lang('Enable course themesAllow'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'allow_learning_path_theme',
- null,
- get_lang('Enable course themesDisallow'),
- 0
- );
- $globalGroup[get_lang("Enable course themes")] = $group;
- }
- $allowLPReturnLink = api_get_setting('allow_lp_return_link');
- if ($allowLPReturnLink === 'true') {
- $group = [
- $form->createElement(
- 'radio',
- 'lp_return_link',
- get_lang('Learning path return link'),
- get_lang('Redirect to the learning paths list'),
- 1
- ),
- $form->createElement(
- 'radio',
- 'lp_return_link',
- null,
- get_lang('Redirect to Course home'),
- 0
- ),
- $form->createElement(
- 'radio',
- 'lp_return_link',
- null,
- get_lang('My courses'),
- 2
- ),
- ];
- $globalGroup[get_lang("Learning path return link")] = $group;
- }
- $exerciseInvisible = api_get_setting('exercise_invisible_in_session');
- $configureExerciseVisibility = api_get_setting('configure_exercise_visibility_in_course');
- if ($exerciseInvisible === 'true' &&
- $configureExerciseVisibility === 'true'
- ) {
- $group = [
- $form->createElement(
- 'radio',
- 'exercise_invisible_in_session',
- get_lang('TestinvisibleInSession'),
- get_lang('Yes'),
- 1
- ),
- $form->createElement(
- 'radio',
- 'exercise_invisible_in_session',
- null,
- get_lang('No'),
- 0
- ),
- ];
- $globalGroup[get_lang("TestinvisibleInSession")] = $group;
- }
- if ($isEditable) {
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup[] = $myButton;
- } else {
- // Is it allowed to edit the course settings?
- if (!$isEditable) {
- $disabled_output = "disabled";
- }
- $form->freeze();
- }
- $form->addPanelOption(
- 'config_lp',
- get_lang('Learning path settings'),
- $globalGroup,
- 'scorms.png',
- false,
- 'accordionSettings'
- );
- if (api_get_configuration_value('allow_exercise_auto_launch')) {
- $globalGroup = [];
- // Auto launch exercise
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'enable_exercise_auto_launch',
- get_lang('Auto-launch for exercises'),
- get_lang('Redirect to the selected exercise'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'enable_exercise_auto_launch',
- get_lang('Auto-launch for exercises'),
- get_lang('Redirect to the exercises list'),
- 2
- );
- $group[] = $form->createElement('radio', 'enable_exercise_auto_launch', null, get_lang('Deactivate'), 0);
- $globalGroup[get_lang("Auto-launch for exercises")] = $group;
- if ($isEditable) {
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup[] = $myButton;
- } else {
- // Is it allowed to edit the course settings?
- if (!$isEditable) {
- $disabled_output = "disabled";
- }
- $form->freeze();
- }
- $form->addPanelOption(
- 'config_exercise',
- get_lang('Test'),
- $globalGroup,
- 'quiz.png',
- false,
- 'accordionSettings'
- );
- }
- // *************** START THEMATIC *************/
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'display_info_advance_inside_homecourse',
- get_lang('Information on thematic advance on course homepage'),
- get_lang('Display information about the last completed topic'),
- 1
- );
- $group[] = $form->createElement(
- 'radio',
- 'display_info_advance_inside_homecourse',
- null,
- get_lang('Display information about the next uncompleted topic'),
- 2
- );
- $group[] = $form->createElement(
- 'radio',
- 'display_info_advance_inside_homecourse',
- null,
- get_lang('Display information about the next uncompleted topicAndLastDoneAdvance'),
- 3
- );
- $group[] = $form->createElement(
- 'radio',
- 'display_info_advance_inside_homecourse',
- null,
- get_lang('Do not display progress'),
- 0
- );
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup = [
- get_lang('Information on thematic advance on course homepage') => $group,
- '' => $myButton,
- ];
- $form->addPanelOption(
- 'thematic',
- get_lang('Thematic advance configuration'),
- $globalGroup,
- 'course_progress.png',
- false,
- 'accordionSettings'
- );
- if (api_get_setting('allow_public_certificates') === 'true') {
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'allow_public_certificates',
- get_lang('Learner certificates are public'),
- get_lang('Yes'),
- 1
- );
- $group[] = $form->createElement('radio', 'allow_public_certificates', null, get_lang('No'), 0);
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup = [
- get_lang('Learner certificates are public') => $group,
- '' => $myButton,
- ];
- $form->addPanelOption(
- 'certificate',
- get_lang('Certificates'),
- $globalGroup,
- null,
- false,
- 'accordionSettings'
- );
- }
- // Forum settings
- $group = [
- $form->createElement('radio', 'enable_forum_auto_launch', null, get_lang('Redirect to forums list'), 1),
- $form->createElement('radio', 'enable_forum_auto_launch', null, get_lang('Disabled'), 2),
- ];
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- // Forum settings
- $groupNotification = [
- $form->createElement('radio', 'hide_forum_notifications', null, get_lang('Yes'), 1),
- $form->createElement('radio', 'hide_forum_notifications', null, get_lang('No'), 2),
- ];
- $addUsers = [
- $form->createElement('radio', 'subscribe_users_to_forum_notifications', null, get_lang('Yes'), 1),
- $form->createElement('radio', 'subscribe_users_to_forum_notifications', null, get_lang('No'), 2),
- ];
- $globalGroup = [
- get_lang('Enable forum auto-launch') => $group,
- get_lang('Hide forum notifications') => $groupNotification,
- get_lang('Subscribe automatically all users to all forum notifications') => $addUsers,
- '' => $myButton,
- ];
- $form->addPanelOption(
- 'forum',
- get_lang('Forum'),
- $globalGroup,
- 'forum.png',
- false,
- 'accordionSettings'
- );
- // Student publication
- $group = [
- $form->createElement('radio', 'show_score', null, get_lang('New documents are visible for all users'), 0),
- $form->createElement('radio', 'show_score', null, get_lang('New documents are only visible for the teacher(s)'), 1),
- ];
- $group2 = [
- $form->createElement('radio', 'student_delete_own_publication', null, get_lang('Yes'), 1),
- $form->createElement('radio', 'student_delete_own_publication', null, get_lang('No'), 0),
- ];
- $myButton = $form->addButtonSave(get_lang('Save settings'), 'submit_save', true);
- $globalGroup = [
- get_lang('Default setting for the visibility of newly posted files') => $group,
- get_lang('Allow learners to delete their own publications') => $group2,
- '' => $myButton,
- ];
- $form->addPanelOption(
- 'student-publication',
- get_lang('Assignments'),
- $globalGroup,
- 'work.png',
- false,
- 'accordionSettings'
- );
- $button = Display::toolbarButton(
- get_lang('Configure external tools'),
- api_get_path(WEB_PUBLIC_PATH)."courses/$course_code/lti/",
- 'cog',
- 'primary'
- );
- $html = [
- $form->createElement('html', '<p>'.get_lang('LTI intro tool').'</p>'.$button),
- ];
- $form->addPanelOption(
- 'lti_tool',
- $translator->trans('External tools'),
- $html,
- 'plugin.png',
- false,
- 'accordionSettings'
- );
- // Plugin course settings
- $appPlugin = new AppPlugin();
- $appPlugin->add_course_settings_form($form);
- $form->addHtml('</div>');
- // Get all the course information
- $all_course_information = CourseManager::get_course_information($_course['sysCode']);
- // Set the default values of the form
- $values = [];
- $values['title'] = $_course['name'];
- $values['category_code'] = $_course['categoryCode'];
- $values['course_language'] = $_course['language'];
- $values['department_name'] = $_course['extLink']['name'];
- $values['department_url'] = $_course['extLink']['url'];
- $values['visibility'] = $_course['visibility'];
- $values['subscribe'] = $_course['subscribe'];
- $values['unsubscribe'] = $_course['unsubscribe'];
- $values['course_registration_password'] = $all_course_information['registration_code'];
- $values['legal'] = $all_course_information['legal'];
- $values['activate_legal'] = $all_course_information['activate_legal'];
- $values['show_score'] = $all_course_information['show_score'];
- $courseSettings = CourseManager::getCourseSettingVariables($appPlugin);
- foreach ($courseSettings as $setting) {
- $result = api_get_course_setting($setting);
- if ($result != '-1') {
- $values[$setting] = $result;
- }
- }
- // make sure new settings have a clear default value
- if (!isset($values['student_delete_own_publication'])) {
- $values['student_delete_own_publication'] = 0;
- }
- $form->setDefaults($values);
- // Validate form
- if ($form->validate() && $isEditable) {
- $updateValues = $form->getSubmitValues();
- // update course picture
- $picture = $_FILES['picture'];
- if (!empty($picture['name'])) {
- $uploadFile = $request->files->get('picture');
- // Remove if exists @todo just replace don't delete everything.
- if (!empty($courseEntity->getResourceNodeIllustration())) {
- $em->remove($courseEntity->getResourceNodeIllustration());
- $em->flush();
- }
- $illustration = new \Chamilo\CoreBundle\Entity\Illustration();
- $em->persist($illustration);
- $repo->addResourceNode($illustration, api_get_user_entity(api_get_user_id()), $courseEntity);
- $file = $repo->addFileToResource($illustration, $uploadFile);
- if ($file) {
- $file->setCrop($updateValues['picture_crop_result']);
- $em->persist($file);
- $em->persist($illustration);
- $em->flush();
- }
- }
- $visibility = $updateValues['visibility'];
- $deletePicture = isset($updateValues['delete_picture']) ? $updateValues['delete_picture'] : '';
- if ($deletePicture) {
- $image = $courseEntity->getResourceNodeIllustration();
- if ($image) {
- $em->remove($image);
- $em->flush();
- }
- }
- global $_configuration;
- $urlId = api_get_current_access_url_id();
- if (isset($_configuration[$urlId]) &&
- isset($_configuration[$urlId]['hosting_limit_active_courses']) &&
- $_configuration[$urlId]['hosting_limit_active_courses'] > 0
- ) {
- $courseInfo = api_get_course_info_by_id($courseId);
- // Check if
- if ($courseInfo['visibility'] == COURSE_VISIBILITY_HIDDEN &&
- $visibility != $courseInfo['visibility']
- ) {
- $num = CourseManager::countActiveCourses($urlId);
- if ($num >= $_configuration[$urlId]['hosting_limit_active_courses']) {
- api_warn_hosting_contact('hosting_limit_active_courses');
- Display::addFlash(
- Display::return_message(get_lang('Sorry, this installation has an active courses limit, which has now been reached. You can still create new courses, but only if you hide/disable at least one existing active course. To do this, edit a course from the administration courses list, and change the visibility to \'hidden\', then try creating this course again. To increase the maximum number of active courses allowed on this Chamilo installation, please contact your hosting provider or, if available, upgrade to a superior hosting plan.'))
- );
- $url = api_get_path(WEB_CODE_PATH).'course_info/infocours.php?'.api_get_cidreq();
- header("Location: $url");
- exit;
- }
- }
- }
- $pdf_export_watermark_path = isset($_FILES['pdf_export_watermark_path'])
- ? $_FILES['pdf_export_watermark_path']
- : null;
- if (!empty($pdf_export_watermark_path['name'])) {
- $pdf_export_watermark_path_result = PDF::upload_watermark(
- $pdf_export_watermark_path['name'],
- $pdf_export_watermark_path['tmp_name'],
- $course_code
- );
- unset($updateValues['pdf_export_watermark_path']);
- }
- $activeLegal = isset($updateValues['activate_legal']) ? $updateValues['activate_legal'] : 0;
- $table_course = Database::get_main_table(TABLE_MAIN_COURSE);
- $params = [
- 'title' => $updateValues['title'],
- 'course_language' => $updateValues['course_language'],
- 'category_code' => $updateValues['category_code'],
- 'department_name' => $updateValues['department_name'],
- 'department_url' => $updateValues['department_url'],
- 'visibility' => $updateValues['visibility'],
- 'subscribe' => $updateValues['subscribe'],
- 'unsubscribe' => $updateValues['unsubscribe'],
- 'legal' => $updateValues['legal'],
- 'activate_legal' => $activeLegal,
- 'registration_code' => $updateValues['course_registration_password'],
- 'show_score' => $updateValues['show_score'],
- ];
- Database::update($table_course, $params, ['id = ?' => $courseId]);
- // Insert/Updates course_settings table
- foreach ($courseSettings as $setting) {
- $value = isset($updateValues[$setting]) ? $updateValues[$setting] : null;
- CourseManager::saveCourseConfigurationSetting(
- $appPlugin,
- $setting,
- $value,
- api_get_course_int_id()
- );
- }
- // update the extra fields
- $courseFieldValue = new ExtraFieldValue('course');
- $courseFieldValue->saveFieldValues($updateValues);
- $appPlugin->saveCourseSettingsHook($updateValues);
- $courseParams = api_get_cidreq();
- $cidReset = true;
- $cidReq = $course_code;
- Display::addFlash(Display::return_message(get_lang('Update successful')));
- $url = api_get_path(WEB_CODE_PATH).'course_info/infocours.php?'.$courseParams;
- header("Location: $url");
- exit;
- }
- if ($show_delete_watermark_text_message) {
- Display::addFlash(
- Display::return_message(get_lang('File deleted'), 'normal')
- );
- }
- //Template Course Info
- $tpl = new Template($nameTools);
- Display::display_header($nameTools, 'Settings');
- //$form->display();
- $tpl->assign('course_settings', $form->returnForm());
- $courseInfoLayout = $tpl->get_template("course_info/index.html.twig");
- $content = $tpl->fetch($courseInfoLayout);
- echo $content;
- Display::display_footer();
|