2 require_once('HTML/QuickForm/hidden.php');
5 * HTML class for a hidden type element
10 class MoodleQuickForm_hidden
extends HTML_QuickForm_hidden
{
12 * html for help button, if empty then no help
18 function MoodleQuickForm_hidden($elementName=null, $value='', $attributes=null) {
19 parent
::HTML_QuickForm_hidden($elementName, $value, $attributes);
23 * set html for help button
26 * @param array $help array of arguments to make a help button
27 * @param string $function function name to call to get html
29 function setHelpButton($helpbuttonargs, $function='helpbutton'){
33 * get html for help button
36 * @return string html for help button
38 function getHelpButton(){