2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This page lets users to manage template competencies.
21 * @copyright 2015 Mark Nelson <markn@moodle.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once(__DIR__ . '/../../../config.php');
26 require_once($CFG->libdir.'/adminlib.php');
28 $templateid = required_param('templateid', PARAM_INT);
29 $pagecontextid = required_param('pagecontextid', PARAM_INT); // Reference to the context we came from.
33 $pagecontext = context::instance_by_id($pagecontextid);
34 $template = \tool_lp\api::read_template($templateid);
35 $context = $template->get_context();
36 require_capability('tool/lp:templatemanage', $context);
39 $url = new moodle_url('/admin/tool/lp/templatecompetencies.php', array('templateid' => $template->get_id(),
40 'pagecontextid' => $pagecontextid));
41 $templatesurl = new moodle_url('/admin/tool/lp/learningplans.php', array('pagecontextid' => $pagecontextid));
43 $PAGE->navigation->override_active_url($templatesurl);
44 $PAGE->set_context($pagecontext);
46 $title = get_string('templatecompetencies', 'tool_lp');
47 $templatename = format_text($template->get_shortname());
49 $PAGE->set_pagelayout('admin');
51 $PAGE->set_title($title);
52 $PAGE->set_heading($templatename);
53 $PAGE->navbar->add($templatename, $url);
56 $output = $PAGE->get_renderer('tool_lp');
57 echo $output->header();
58 echo $output->heading($title);
59 $page = new \tool_lp\output\template_competencies_page($template->get_id(), $pagecontext);
60 echo $output->render($page);
61 echo $output->footer();