getRepository('ChamiloSkillBundle:Profile')->findAll(); $list = $em->getRepository('ChamiloSkillBundle:Level')->findAll(); $listAction = api_get_self(); $action = ''; if (isset($_GET['action']) && in_array($_GET['action'], ['add', 'edit', 'delete', 'add_level'])) { $action = $_GET['action']; } $id = isset($_GET['id']) ? $_GET['id'] : ''; $item = null; if (!empty($id)) { /** @var \Chamilo\SkillBundle\Entity\Level $item */ $item = $em->getRepository('ChamiloSkillBundle:Level')->find($id); if (!$item) { api_not_allowed(); } } $form = new FormValidator('Level', 'GET', api_get_self().'?action='.$action.'&id='.$id); $form->addText('name', get_lang('Name')); $form->addText('short_name', get_lang('ShortName')); $form->addSelectFromCollection('profile_id', get_lang('Profile'), $profiles); $form->addHidden('action', $action); $form->addHidden('id', $id); $form->addButtonSave(get_lang('Save')); if (!empty($item)) { $form->setDefaults([ 'name' => $item->getName(), 'short_name' => $item->getShortName(), 'profile_id' => $item->getProfile()->getId(), ]); } $formToDisplay = $form->returnForm(); $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); $interbreadcrumb[] = array ('url' => api_get_self(), 'name' => get_lang('SkillProfile')); $tpl = new Template($action); switch ($action) { case 'add': $tpl->assign('form', $formToDisplay); if ($form->validate()) { $values = $form->exportValues(); $item = new \Chamilo\SkillBundle\Entity\Level(); $item->setName($values['name']); $item->setShortName($values['short_name']); $profile = $em->getRepository('ChamiloSkillBundle:Profile')->find($values['profile_id']); $item->setProfile($profile); $em->persist($item); $em->flush(); header('Location: '.$listAction); exit; } $tpl->assign('actions', Display::url(get_lang('List'), $listAction)); break; case 'edit': $tpl->assign('form', $formToDisplay); $tpl->assign('actions', Display::url(get_lang('List'), $listAction)); if ($form->validate()) { $values = $form->exportValues(); $item->setName($values['name']); $item->setShortName($values['short_name']); $profile = $em->getRepository('ChamiloSkillBundle:Profile')->find($values['profile_id']); $item->setProfile($profile); $em->persist($item); $em->flush(); header('Location: '.$listAction); exit; } break; case 'delete': $tpl->assign('actions', Display::url(get_lang('List'), $listAction)); $em->remove($item); $em->flush(); header('Location: '.$listAction); exit; break; default: $tpl->assign('actions', Display::url(get_lang('Add'), api_get_self().'?action=add')); } $tpl->assign('list', $list); $templateName = $tpl->get_template('admin/skill_level.tpl'); $contentTemplate = $tpl->fetch($templateName); $tpl->assign('content', $contentTemplate); $tpl->display_one_col_template();