-
Notifications
You must be signed in to change notification settings - Fork 5
/
edit_form.php
executable file
·32 lines (31 loc) · 1.18 KB
/
edit_form.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
<?php
// This file is part of Credly's Acclaim Moodle Block Plugin
//
// Credly's Acclaim Moodle Block Plugin is free software: you can redistribute it
// and/or modify it under the terms of the MIT license as published by
// the Free Software Foundation.
//
// This script 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
// MIT License for more details.
//
// You can find the GNU General Public License at <https://opensource.org/licenses/MIT>.
/**
* Credly's Acclaim Moodle Block Plugin
* Credly: http://youracclaim.com
* Moodle: http://moodle.org/
*
* Configuration form.
* @see https://docs.moodle.org/dev/Form_API
*
* @package block_acclaim
* @copyright 2020 Credly, Inc. <http://youracclaim.com>
* @license https://opensource.org/licenses/MIT
*/
class block_acclaim_edit_form extends block_edit_form {
protected function specific_definition($mform) {
$mform->addElement('header', 'configheader', get_string('config_header', 'block_acclaim'));
$mform->addElement('html', get_string('config_instructions', 'block_acclaim'));
}
}