-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_keyword.php
41 lines (35 loc) · 1.46 KB
/
new_keyword.php
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
<?php
// This file is part of Moodle - http://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 <http://www.gnu.org/licenses/>.
use auth_disguise\manager\disguise_keyword;
require_once(__DIR__ . '/../../config.php');
require_login();
$PAGE->set_context(context_system::instance());
$PAGE->set_pagelayout('admin');
$PAGE->set_url('/auth/disguise/new_keyword.php');
$PAGE->set_heading(get_string('new_keyword', 'auth_disguise'));
$PAGE->set_title(get_string('new_keyword', 'auth_disguise'));
$form = new auth_disguise\form\keyword();
if ($form->is_cancelled()) {
redirect(new moodle_url('/auth/disguise/keyword.php'));
} else if ($data = $form->get_data()) {
$keyword = $data->keyword;
$items = explode(',', $data->items);
disguise_keyword::create_keyword_with_items($keyword, $items);
redirect(new moodle_url('/auth/disguise/keyword.php'));
}
echo $OUTPUT->header();
$form->display();
echo $OUTPUT->footer();