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;
51 if ($ADMIN->fulltree
) {
52 require_once($CFG->dirroot
.'/mod/lti/locallib.php');
54 $configuredtoolshtml = '';
55 $pendingtoolshtml = '';
56 $rejectedtoolshtml = '';
58 $active = get_string('active', 'lti');
59 $pending = get_string('pending', 'lti');
60 $rejected = get_string('rejected', 'lti');
61 $typename = get_string('typename', 'lti');
62 $baseurl = get_string('baseurl', 'lti');
63 $action = get_string('action', 'lti');
64 $createdon = get_string('createdon', 'lti');
66 $types = lti_filter_get_types(get_site()->id
);
68 $configuredtools = lti_filter_tool_types($types, LTI_TOOL_STATE_CONFIGURED
);
70 $configuredtoolshtml = lti_get_tool_table($configuredtools, 'lti_configured');
72 $pendingtools = lti_filter_tool_types($types, LTI_TOOL_STATE_PENDING
);
74 $pendingtoolshtml = lti_get_tool_table($pendingtools, 'lti_pending');
76 $rejectedtools = lti_filter_tool_types($types, LTI_TOOL_STATE_REJECTED
);
78 $rejectedtoolshtml = lti_get_tool_table($rejectedtools, 'lti_rejected');
80 $tab = optional_param('tab', '', PARAM_ALPHAEXT
);
82 $pendingselected = '';
83 $rejectedselected = '';
86 $pendingselected = 'class="selected"';
89 $rejectedselected = 'class="selected"';
92 $activeselected = 'class="selected"';
97 <div id=\"lti_tabs\" class=\"yui-navset\">
98 <ul id=\"lti_tab_heading\" class=\"yui-nav\" style=\"display:none\">
99 <li {$activeselected}>
104 <li {$pendingselected}>
109 <li {$rejectedselected}>
115 <div class=\"yui-content\">
128 <script type=\"text/javascript\">
130 YUI().use('yui2-tabview', 'yui2-datatable', function(Y) {
131 //If javascript is disabled, they will just see the three tabs one after another
132 var lti_tab_heading = document.getElementById('lti_tab_heading');
133 lti_tab_heading.style.display = '';
135 new Y.YUI2.widget.TabView('lti_tabs');
137 var setupTools = function(id, sort){
138 var lti_tools = Y.YUI2.util.Dom.get(id + '_tools');
141 var dataSource = new Y.YUI2.util.DataSource(lti_tools);
143 var configuredColumns = [
144 {key:'name', label:'$typename', sortable:true},
145 {key:'baseURL', label:'$baseurl', sortable:true},
146 {key:'timecreated', label:'$createdon', sortable:true},
147 {key:'action', label:'$action'}
150 dataSource.responseType = Y.YUI2.util.DataSource.TYPE_HTMLTABLE;
151 dataSource.responseSchema = {
160 new Y.YUI2.widget.DataTable(id + '_container', configuredColumns, dataSource,
168 setupTools('lti_configured', {key:'name', dir:'asc'});
169 setupTools('lti_pending', {key:'timecreated', dir:'desc'});
170 setupTools('lti_rejected', {key:'timecreated', dir:'desc'});
175 $settings->add(new admin_setting_heading('lti_types', get_string('external_tool_types', 'lti') . $OUTPUT->help_icon('main_admin', 'lti'), $template));