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/>.
17 // This file is part of BasicLTI4Moodle
19 // BasicLTI4Moodle is an IMS BasicLTI (Basic Learning Tools for Interoperability)
20 // consumer for Moodle 1.9 and Moodle 2.0. BasicLTI is a IMS Standard that allows web
21 // based learning tools to be easily integrated in LMS as native ones. The IMS BasicLTI
22 // specification is part of the IMS standard Common Cartridge 1.1 Sakai and other main LMS
23 // are already supporting or going to support BasicLTI. This project Implements the consumer
24 // for Moodle. Moodle is a Free Open source Learning Management System by Martin Dougiamas.
25 // BasicLTI4Moodle is a project iniciated and leaded by Ludo(Marc Alier) and Jordi Piguillem
26 // at the GESSI research group at UPC.
27 // SimpleLTI consumer for Moodle is an implementation of the early specification of LTI
28 // by Charles Severance (Dr Chuck) htp://dr-chuck.com , developed by Jordi Piguillem in a
29 // Google Summer of Code 2008 project co-mentored by Charles Severance and Marc Alier.
31 // BasicLTI4Moodle is copyright 2009 by Marc Alier Forment, Jordi Piguillem and Nikolas Galanis
32 // of the Universitat Politecnica de Catalunya http://www.upc.edu
33 // Contact info: Marc Alier Forment granludo @ gmail.com or marc.alier @ upc.edu.
36 * This file defines the global lti administration form
39 * @copyright 2009 Marc Alier, Jordi Piguillem, Nikolas Galanis
41 * @copyright 2009 Universitat Politecnica de Catalunya http://www.upc.edu
43 * @author Jordi Piguillem
44 * @author Nikolas Galanis
45 * @author Chris Scribner
46 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
49 defined('MOODLE_INTERNAL') || die;
52 * @var admin_settingpage $settings
54 $modltifolder = new admin_category('modltifolder', new lang_string('pluginname', 'mod_lti'), $module->is_enabled() === false);
55 $ADMIN->add('modsettings', $modltifolder);
56 $settings->visiblename = new lang_string('manage_tools', 'mod_lti');
57 $ADMIN->add('modltifolder', $settings);
58 $ADMIN->add('modltifolder', new admin_externalpage('ltitoolproxies',
59 get_string('manage_tool_proxies', 'lti'),
60 new moodle_url('/mod/lti/toolproxies.php')));
62 foreach (core_plugin_manager::instance()->get_plugins_of_type('ltisource') as $plugin) {
64 * @var \mod_lti\plugininfo\ltisource $plugin
66 $plugin->load_settings($ADMIN, 'modltifolder', $hassiteconfig);
69 $toolproxiesurl = new moodle_url('/mod/lti/toolproxies.php');
70 $toolproxiesurl = $toolproxiesurl->out();
72 if ($ADMIN->fulltree) {
73 require_once($CFG->dirroot.'/mod/lti/locallib.php');
75 $configuredtoolshtml = '';
76 $pendingtoolshtml = '';
77 $rejectedtoolshtml = '';
79 $active = get_string('active', 'lti');
80 $pending = get_string('pending', 'lti');
81 $rejected = get_string('rejected', 'lti');
83 // Gather strings used for labels in the inline JS.
84 $PAGE->requires->strings_for_js(
94 $types = lti_filter_get_types(get_site()->id);
96 $configuredtools = lti_filter_tool_types($types, LTI_TOOL_STATE_CONFIGURED);
98 $configuredtoolshtml = lti_get_tool_table($configuredtools, 'lti_configured');
100 $pendingtools = lti_filter_tool_types($types, LTI_TOOL_STATE_PENDING);
102 $pendingtoolshtml = lti_get_tool_table($pendingtools, 'lti_pending');
104 $rejectedtools = lti_filter_tool_types($types, LTI_TOOL_STATE_REJECTED);
106 $rejectedtoolshtml = lti_get_tool_table($rejectedtools, 'lti_rejected');
108 $tab = optional_param('tab', '', PARAM_ALPHAEXT);
109 $activeselected = '';
110 $pendingselected = '';
111 $rejectedselected = '';
114 $pendingselected = 'class="selected"';
117 $rejectedselected = 'class="selected"';
120 $activeselected = 'class="selected"';
123 $addtype = get_string('addtype', 'lti');
124 $config = get_string('manage_tool_proxies', 'lti');
126 $addtypeurl = "{$CFG->wwwroot}/mod/lti/typessettings.php?action=add&sesskey={$USER->sesskey}";
129 <div id="lti_tabs" class="yui-navset">
130 <ul id="lti_tab_heading" class="yui-nav" style="display:none">
131 <li {$activeselected}>
136 <li {$pendingselected}>
141 <li {$rejectedselected}>
147 <div class="yui-content">
149 <div><a style="margin-top:.25em" href="{$addtypeurl}">{$addtype}</a></div>
161 <script type="text/javascript">
163 YUI().use('yui2-tabview', 'yui2-datatable', function(Y) {
164 //If javascript is disabled, they will just see the three tabs one after another
165 var lti_tab_heading = document.getElementById('lti_tab_heading');
166 lti_tab_heading.style.display = '';
168 new Y.YUI2.widget.TabView('lti_tabs');
170 var setupTools = function(id, sort){
171 var lti_tools = Y.YUI2.util.Dom.get(id + '_tools');
174 var dataSource = new Y.YUI2.util.DataSource(lti_tools);
176 var configuredColumns = [
177 {key:'name', label: M.util.get_string('typename', 'mod_lti'), sortable: true},
178 {key:'baseURL', label: M.util.get_string('baseurl', 'mod_lti'), sortable: true},
179 {key:'timecreated', label: M.util.get_string('createdon', 'mod_lti'), sortable: true},
180 {key:'action', label: M.util.get_string('action', 'mod_lti')}
183 dataSource.responseType = Y.YUI2.util.DataSource.TYPE_HTMLTABLE;
184 dataSource.responseSchema = {
193 new Y.YUI2.widget.DataTable(id + '_container', configuredColumns, dataSource,
201 setupTools('lti_configured_tools', {key:'name', dir:'asc'});
202 setupTools('lti_pending_tools', {key:'timecreated', dir:'desc'});
203 setupTools('lti_rejected_tools', {key:'timecreated', dir:'desc'});
208 $settings->add(new admin_setting_heading('lti_types', new lang_string('external_tool_types', 'lti') .
209 $OUTPUT->help_icon('main_admin', 'lti'), $template));
212 // Tell core we already added the settings structure.