You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
947 B
37 lines
947 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* @package chamilo.admin
|
|
*/
|
|
|
|
$cidReset = true;
|
|
require_once '../inc/global.inc.php';
|
|
|
|
$this_section = SECTION_MYPROFILE;
|
|
|
|
api_block_anonymous_users();
|
|
|
|
if (api_get_setting('allow_skills_tool') != 'true') {
|
|
api_not_allowed();
|
|
}
|
|
|
|
//Adds the JS needed to use the jqgrid
|
|
$htmlHeadXtra[] = api_get_jqgrid_js();
|
|
$htmlHeadXtra[] = api_get_js('jquery.jsPlumb.all.js');
|
|
$htmlHeadXtra[] = api_get_js('skills.js');
|
|
|
|
$skill = new Skill();
|
|
$type = 'read'; //edit
|
|
|
|
$tree = $skill->get_skills_tree(api_get_user_id(), null, true);
|
|
$skill_visualizer = new SkillVisualizer($tree, $type);
|
|
$url = api_get_path(WEB_AJAX_PATH).'skill.ajax.php?1=1';
|
|
$tpl = new Template(null, false, false);
|
|
|
|
$tpl->assign('url', $url);
|
|
$tpl->assign('skill_visualizer', $skill_visualizer);
|
|
|
|
$content = $tpl->fetch('default/skill/skill_tree_student.tpl');
|
|
$tpl->assign('content', $content);
|
|
$tpl->display_no_layout_template();
|
|
|