. /** * This page lets users to manage template competencies. * * @package tool_lp * @copyright 2015 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../../../config.php'); require_once($CFG->libdir.'/adminlib.php'); $templateid = required_param('templateid', PARAM_INT); $pagecontextid = required_param('pagecontextid', PARAM_INT); // Reference to the context we came from. require_login(0, false); $pagecontext = context::instance_by_id($pagecontextid); $template = \tool_lp\api::read_template($templateid); $context = $template->get_context(); require_capability('tool/lp:templatemanage', $context); // Set up the page. $url = new moodle_url('/admin/tool/lp/templatecompetencies.php', array('templateid' => $template->get_id(), 'pagecontextid' => $pagecontextid)); list($title, $subtitle) = \tool_lp\page_helper::setup_for_template($pagecontextid, $url, $template, get_string('templatecompetencies', 'tool_lp')); // Display the page. $output = $PAGE->get_renderer('tool_lp'); echo $output->header(); echo $output->heading($title); echo $output->heading($subtitle, 3); $page = new \tool_lp\output\template_competencies_page($template->get_id(), $pagecontext); echo $output->render($page); echo $output->footer();