forked from oohoo/moodle-block_tts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit_form.php
30 lines (27 loc) · 1.32 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
<?php
/**
* *************************************************************************
* * OOHOO - TTS - Text To Speech **
* *************************************************************************
* @package block **
* @subpackage TTS **
* @name TTS **
* @copyright oohoo.biz **
* @link http://oohoo.biz **
* @author Ryan Thomas (Original Author) **
* @author Dustin Durand **
* @author Nicolas Bretin **
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later **
* *************************************************************************
* ************************************************************************ */
class block_tts_edit_form extends block_edit_form
{
/**
* Specific definition...
* @param moodleform $mform
*/
protected function specific_definition($mform)
{
// Fields for editing HTML block title and contents.
}
}