. /** * Form for editing timetable block instances. * * @package block_timetable * @copyright 2020 Raphael Dannecker * @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Form for editing block_timetable block instances. * * @package block_timetable * @copyright 2020 Raphael Dannecker * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class block_timetable_edit_form extends block_edit_form { /** * Extends the configuration form for block_timetable. */ protected function specific_definition($mform) { // Section header title. $mform->addElement('header', 'configheader', get_string('blocksettings', 'block')); // Please keep in mind that all elements defined here must start with 'config_'. } }