示例#1
0
 /**
  * Constructor
  *
  * @param string $elementName (optional) name of the checkbox
  * @param string $elementLabel (optional) checkbox label
  * @param string $text (optional) Text to put after the checkbox
  * @param mixed $attributes (optional) Either a typical HTML attribute string
  *              or an associative array
  */
 function MoodleQuickForm_checkbox($elementName = null, $elementLabel = null, $text = '', $attributes = null)
 {
     parent::HTML_QuickForm_checkbox($elementName, $elementLabel, $text, $attributes);
 }