1 |
efrain |
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 |
* Class containing data for tool_configure page
|
|
|
19 |
*
|
|
|
20 |
* @package mod_lti
|
|
|
21 |
* @copyright 2015 Ryan Wyllie <ryan@moodle.com>
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
namespace mod_lti\output;
|
|
|
25 |
|
|
|
26 |
defined('MOODLE_INTERNAL') || die;
|
|
|
27 |
|
|
|
28 |
require_once($CFG->dirroot.'/mod/lti/locallib.php');
|
|
|
29 |
|
|
|
30 |
use moodle_url;
|
|
|
31 |
use renderable;
|
|
|
32 |
use templatable;
|
|
|
33 |
use renderer_base;
|
|
|
34 |
use stdClass;
|
|
|
35 |
use help_icon;
|
|
|
36 |
|
|
|
37 |
/**
|
|
|
38 |
* Class containing data for tool_configure page
|
|
|
39 |
*
|
|
|
40 |
* @copyright 2015 Ryan Wyllie <ryan@moodle.com>
|
|
|
41 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
42 |
*/
|
|
|
43 |
class tool_configure_page implements renderable, templatable {
|
|
|
44 |
/**
|
|
|
45 |
* Export this data so it can be used as the context for a mustache template.
|
|
|
46 |
*
|
|
|
47 |
* @param renderer_base $output The renderer
|
|
|
48 |
* @return stdClass
|
|
|
49 |
*/
|
|
|
50 |
public function export_for_template(renderer_base $output) {
|
|
|
51 |
$data = new stdClass();
|
|
|
52 |
|
|
|
53 |
$keyhelp = new help_icon('resourcekey', 'mod_lti');
|
|
|
54 |
$secrethelp = new help_icon('password', 'mod_lti');
|
|
|
55 |
|
|
|
56 |
$url = new moodle_url('/mod/lti/typessettings.php', array('sesskey' => sesskey(), 'returnto' => 'toolconfigure'));
|
|
|
57 |
$data->configuremanualurl = $url->out();
|
|
|
58 |
$url = new moodle_url('/admin/settings.php?section=modsettinglti');
|
|
|
59 |
$data->managetoolsurl = $url->out();
|
|
|
60 |
$url = new moodle_url('/mod/lti/toolproxies.php');
|
|
|
61 |
$data->managetoolproxiesurl = $url->out();
|
|
|
62 |
$data->keyhelp = $keyhelp->export_for_template($output);
|
|
|
63 |
$data->secrethelp = $secrethelp->export_for_template($output);
|
|
|
64 |
return $data;
|
|
|
65 |
}
|
|
|
66 |
}
|