skills_tree.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.admin
  5. */
  6. $cidReset = true;
  7. require_once __DIR__.'/../inc/global.inc.php';
  8. $this_section = SECTION_MYPROFILE;
  9. api_block_anonymous_users();
  10. Skill::isAllowed(api_get_user_id());
  11. //Adds the JS needed to use the jqgrid
  12. $htmlHeadXtra[] = api_get_jqgrid_js();
  13. $htmlHeadXtra[] = api_get_js('jqueryui-touch-punch/jquery.ui.touch-punch.min.js');
  14. $htmlHeadXtra[] = api_get_js('jquery.jsPlumb.all.js');
  15. $htmlHeadXtra[] = api_get_js('skills.js');
  16. $skill = new Skill();
  17. $type = 'read'; //edit
  18. $tree = $skill->getSkillsTree(api_get_user_id(), null, true);
  19. $skill_visualizer = new SkillVisualizer($tree, $type);
  20. $url = api_get_path(WEB_AJAX_PATH).'skill.ajax.php?1=1';
  21. $tpl = new Template(null, false, false);
  22. $tpl->assign('url', $url);
  23. $tpl->assign('skill_visualizer', $skill_visualizer);
  24. $template = $tpl->get_template('skill/skill_tree_student.tpl');
  25. $content = $tpl->fetch($template);
  26. $tpl->assign('content', $content);
  27. $tpl->display_no_layout_template();