123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This is a learning path creation and player tool in Chamilo - previously learnpath_handler.php.
- *
- * @author Patrick Cool
- * @author Denes Nagy
- * @author Roan Embrechts, refactoring and code cleaning
- * @author Yannick Warnier <ywarnier@beeznest.org> - cleaning and update for new SCORM tool
- * @author Julio Montoya <gugli100@gmail.com> Adding formvalidator support
- *
- * @package chamilo.learnpath
- */
- $this_section = SECTION_COURSES;
- api_protect_course_script();
- /* Header and action code */
- $currentstyle = api_get_setting('stylesheets');
- $htmlHeadXtra[] = '<script>
- function activate_start_date() {
- if(document.getElementById(\'start_date_div\').style.display == \'none\') {
- document.getElementById(\'start_date_div\').style.display = \'block\';
- } else {
- document.getElementById(\'start_date_div\').style.display = \'none\';
- }
- }
- function activate_end_date() {
- if(document.getElementById(\'end_date_div\').style.display == \'none\') {
- document.getElementById(\'end_date_div\').style.display = \'block\';
- } else {
- document.getElementById(\'end_date_div\').style.display = \'none\';
- }
- }
- </script>';
- /* Constants and variables */
- $is_allowed_to_edit = api_is_allowed_to_edit(null, true);
- $isStudentView = isset($_REQUEST['isStudentView']) ? $_REQUEST['isStudentView'] : null;
- $learnpath_id = isset($_REQUEST['lp_id']) ? $_REQUEST['lp_id'] : null;
- /* MAIN CODE */
- if ((!$is_allowed_to_edit) || ($isStudentView)) {
- header('location:lp_controller.php?action=view&lp_id='.$learnpath_id);
- exit;
- }
- // From here on, we are admin because of the previous condition, so don't check anymore.
- /*
- Course admin section
- - all the functions not available for students - always available in this case (page only shown to admin)
- */
- if (api_is_in_gradebook()) {
- $interbreadcrumb[] = [
- 'url' => Category::getUrl(),
- 'name' => get_lang('ToolGradebook'),
- ];
- }
- $interbreadcrumb[] = [
- 'url' => 'lp_controller.php?action=list',
- 'name' => get_lang('LearningPaths'),
- ];
- Display::display_header(get_lang('LearnpathAddLearnpath'), 'Path');
- echo '<div class="actions">';
- echo '<a href="lp_controller.php?'.api_get_cidreq().'">'.
- Display::return_icon(
- 'back.png',
- get_lang('ReturnToLearningPaths'),
- '',
- ICON_SIZE_MEDIUM
- ).'</a>';
- echo '</div>';
- echo Display::return_message(get_lang('AddLpIntro'), 'normal', false);
- if ($_POST && empty($_REQUEST['lp_name'])) {
- echo Display::return_message(
- get_lang('FormHasErrorsPleaseComplete'),
- 'error',
- false
- );
- }
- $form = new FormValidator(
- 'lp_add',
- 'post',
- api_get_path(WEB_CODE_PATH).'lp/lp_controller.php?'.api_get_cidreq()
- );
- // Form title
- $form->addHeader(get_lang('AddLpToStart'));
- // Title
- $form->addElement(
- 'text',
- 'lp_name',
- api_ucfirst(get_lang('LPName')),
- ['autofocus' => 'autofocus']
- );
- $form->applyFilter('lp_name', 'html_filter');
- $form->addRule('lp_name', get_lang('ThisFieldIsRequired'), 'required');
- $form->addElement('hidden', 'post_time', time());
- $form->addElement('hidden', 'action', 'add_lp');
- $form->addButtonAdvancedSettings('advanced_params');
- $form->addHtml('<div id="advanced_params_options" style="display:none">');
- $items = learnpath::getCategoryFromCourseIntoSelect(
- api_get_course_int_id(),
- true
- );
- $form->addElement('select', 'category_id', get_lang('Category'), $items);
- // accumulate_scorm_time
- $form->addElement(
- 'checkbox',
- 'accumulate_scorm_time',
- [null, get_lang('AccumulateScormTimeInfo')],
- get_lang('AccumulateScormTime')
- );
- // Start date
- $form->addElement(
- 'checkbox',
- 'activate_start_date_check',
- null,
- get_lang('EnableStartTime'),
- ['onclick' => 'activate_start_date()']
- );
- $form->addElement('html', '<div id="start_date_div" style="display:block;">');
- $form->addDatePicker('publicated_on', get_lang('PublicationDate'));
- $form->addElement('html', '</div>');
- //End date
- $form->addElement(
- 'checkbox',
- 'activate_end_date_check',
- null,
- get_lang('EnableEndTime'),
- ['onclick' => 'activate_end_date()']
- );
- $form->addElement('html', '<div id="end_date_div" style="display:none;">');
- $form->addDatePicker('expired_on', get_lang('ExpirationDate'));
- $form->addElement('html', '</div>');
- Skill::addSkillsToForm($form, ITEM_TYPE_LEARNPATH, 0);
- $form->addElement('html', '</div>');
- $defaults['activate_start_date_check'] = 1;
- if (api_get_setting('scorm_cumulative_session_time') == 'true') {
- $defaults['accumulate_scorm_time'] = 1;
- } else {
- $defaults['accumulate_scorm_time'] = 0;
- }
- $defaults['publicated_on'] = date('Y-m-d 08:00:00');
- $defaults['expired_on'] = date('Y-m-d 08:00:00', time() + 86400);
- $form->setDefaults($defaults);
- $form->addButtonCreate(get_lang('CreateLearningPath'));
- $form->display();
- // Footer
- Display::display_footer();
|