Adding formvalidator support * * @package chamilo.learnpath */ $this_section = SECTION_COURSES; api_protect_course_script(); $is_allowed_to_edit = api_is_allowed_to_edit(null, true); if (!$is_allowed_to_edit) { header('location:lp_controller.php?action=list&'.api_get_cidreq()); exit; } $interbreadcrumb[] = array( 'url' => 'lp_controller.php?action=list?'.api_get_cidreq(), 'name' => get_lang('LearningPaths'), ); $form = new FormValidator( 'lp_add_category', 'post', 'lp_controller.php?'.api_get_cidreq() ); // Form title $form->addElement('header', null, get_lang('AddLPCategory')); // Title $form->addElement('text', 'name', api_ucfirst(get_lang('Name'))); $form->addRule('name', get_lang('ThisFieldIsRequired'), 'required'); $form->addElement('hidden', 'action', 'add_lp_category'); $form->addElement('hidden', 'c_id', api_get_course_int_id()); $form->addElement('hidden', 'id', 0); $form->addButtonSave(get_lang('Save')); if ($form->validate()) { $values = $form->getSubmitValues(); if (!empty($values['id'])) { learnpath::updateCategory($values); $url = api_get_self().'?action=list&'.api_get_cidreq(); Display::addFlash(Display::return_message(get_lang('Updated'))); header('Location: '.$url); exit; } else { learnpath::createCategory($values); Display::addFlash(Display::return_message(get_lang('Added'))); $url = api_get_self().'?action=list&'.api_get_cidreq(); header('Location: '.$url); exit; } } else { $id = isset($_REQUEST['id']) ? $_REQUEST['id'] : null; if ($id) { $item = learnpath::getCategory($id); $defaults = array( 'id' => $item->getId(), 'name' => $item->getName() ); $form->setDefaults($defaults); } } Display::display_header(get_lang('LearnpathAddLearnpath'), 'Path'); echo '
'; $form->display(); Display::display_footer();