12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Skill list for management
- * @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com>
- * @package chamilo.admin
- */
- use ChamiloSession as Session;
- $cidReset = true;
- require_once '../inc/global.inc.php';
- $this_section = SECTION_PLATFORM_ADMIN;
- api_protect_admin_script();
- if (api_get_setting('allow_skills_tool') != 'true') {
- api_not_allowed();
- }
- $interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
- $message = Session::has('message') ? Session::read('message') : null;
- $toolbar = Display::toolbarButton(
- get_lang('CreateSkill'),
- api_get_path(WEB_CODE_PATH) . 'admin/skill_create.php',
- 'plus',
- 'success',
- ['title' => get_lang('CreateSkill')]
- );
- $toolbar .= Display::toolbarButton(
- get_lang('SkillsWheel'),
- api_get_path(WEB_CODE_PATH) . 'admin/skills_wheel.php',
- 'bullseye',
- 'primary',
- ['title' => get_lang('CreateSkill')]
- );
- /* View */
- $skill = new Skill();
- $skillList = $skill->get_all();
- $tpl = new Template(get_lang('ManageSkills'));
- $tpl->assign('message', $message);
- $tpl->assign('skills', $skillList);
- $content = $tpl->fetch('default/skill/list.tpl');
- $tpl->assign('actions', $toolbar);
- $tpl->assign('content', $content);
- $tpl->display_one_col_template();
- Session::erase('message');
|