-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
66 lines (60 loc) · 2.44 KB
/
settings.php
File metadata and controls
66 lines (60 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
// This file is part of the Lessonspace plugin for Moodle - https://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <https://www.gnu.org/licenses/>.
/**
* Plugin administration pages are defined here.
*
* @package mod_lessonspace
* @category admin
* @copyright 2021 Lessonspace, Inc
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once $CFG->dirroot.'/mod/lessonspace/lib.php';
if ($hassiteconfig) {
$settings = new admin_settingpage('modsettingslessonspace', get_string('pluginname', 'mod_lessonspace'));
if ($ADMIN->fulltree) {
// Test whether connection works and display result to user.
if (!CLI_SCRIPT && $PAGE->url == $CFG->wwwroot . '/' . $CFG->admin . '/settings.php?section=modsettingslessonspace') {
$key = 'apiconnected';
$notifyclass = 'notifysuccess';
$errormessage = '';
try {
$service = new mod_lessonspace_api_service();
$service->get_organisation();
} catch (moodle_exception $error) {
$key = 'apinotconnected';
$notifyclass = 'notifyproblem';
$errormessage = ': '.$error->a;
}
$statusmessage = $OUTPUT->notification(
get_string($key, 'lessonspace') . $errormessage,
$notifyclass
);
$connectionstatus = new admin_setting_heading('mod_lessonspace/connectionstatus', $statusmessage, '');
$settings->add($connectionstatus);
}
$settings->add(
new admin_setting_configtext(
'mod_lessonspace/apikey',
get_string('apikey', 'mod_lessonspace'),
get_string('apikey_description', 'mod_lessonspace'),
'',
PARAM_ALPHANUMEXT,
36
)
);
}
}