Commit | Line | Data |
---|---|---|
274d79c9 DW |
1 | <?php |
2 | // This file is part of Moodle - http://moodle.org/ | |
3 | // | |
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. | |
8 | // | |
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. | |
13 | // | |
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/>. | |
16 | ||
17 | /** | |
18 | * This page lets users to manage site wide competencies. | |
19 | * | |
20 | * @package tool_templatelibrary | |
21 | * @copyright 2015 Damyon Wiese | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | */ | |
24 | ||
25 | require_once(__DIR__ . '/../../../config.php'); | |
26 | require_once($CFG->libdir.'/adminlib.php'); | |
27 | ||
28 | admin_externalpage_setup('tooltemplatelibrary'); | |
29 | ||
30 | $component = optional_param('component', '', PARAM_COMPONENT); | |
31 | $search = optional_param('search', '', PARAM_RAW); | |
32 | ||
33 | $title = get_string('templates', 'tool_templatelibrary'); | |
34 | $pagetitle = get_string('searchtemplates', 'tool_templatelibrary'); | |
35 | // Set up the page. | |
36 | $url = new moodle_url("/admin/tool/templatelibrary/index.php", array('component' => $component, 'search' => $search)); | |
37 | $PAGE->set_url($url); | |
38 | $PAGE->set_title($title); | |
39 | $PAGE->set_heading($title); | |
40 | $output = $PAGE->get_renderer('tool_templatelibrary'); | |
41 | echo $output->header(); | |
42 | echo $output->heading($pagetitle); | |
43 | ||
44 | $page = new \tool_templatelibrary\output\list_templates_page($component, $search); | |
45 | echo $output->render($page); | |
46 | ||
47 | echo $output->footer(); |