MDL-39888 mnet: Removal of an old sql statement invloving the mdl_log table.
[moodle.git] / lib / form / radio.php
blob6aaa7809a0b4c053fd6bfe6b36239e591f79f820
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * radio type form element
21 * Contains HTML class for a radio type element
23 * @package core_form
24 * @copyright 2006 Jamie Pratt <me@jamiep.org>
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 require_once('HTML/QuickForm/radio.php');
30 /**
31 * radio type form element
33 * HTML class for a radio type element
35 * @package core_form
36 * @category form
37 * @copyright 2006 Jamie Pratt <me@jamiep.org>
38 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40 class MoodleQuickForm_radio extends HTML_QuickForm_radio{
41 /** @var string html for help button, if empty then no help */
42 var $_helpbutton='';
44 /**
45 * constructor
47 * @param string $elementName (optional) name of the radio element
48 * @param string $elementLabel (optional) label for radio element
49 * @param string $text (optional) Text to put after the radio element
50 * @param string $value (optional) default value
51 * @param mixed $attributes (optional) Either a typical HTML attribute string
52 * or an associative array
54 function MoodleQuickForm_radio($elementName=null, $elementLabel=null, $text=null, $value=null, $attributes=null) {
55 parent::HTML_QuickForm_radio($elementName, $elementLabel, $text, $value, $attributes);
58 /**
59 * get html for help button
61 * @return string html for help button
63 function getHelpButton(){
64 return $this->_helpbutton;
67 /**
68 * Slightly different container template when frozen.
70 * @return string
72 function getElementTemplateType(){
73 if ($this->_flagFrozen){
74 return 'static';
75 } else {
76 return 'default';
80 /**
81 * Returns the disabled field. Accessibility: the return "( )" from parent
82 * class is not acceptable for screenreader users, and we DO want a label.
84 * @return string
86 function getFrozenHtml()
88 $output = '<input type="radio" disabled="disabled" id="'.$this->getAttribute('id').'" ';
89 if ($this->getChecked()) {
90 $output .= 'checked="checked" />'.$this->_getPersistantData();
91 } else {
92 $output .= '/>';
94 return $output;
97 /**
98 * Returns HTML for advchecbox form element.
100 * @return string
102 function toHtml()
104 return '<span>' . parent::toHtml() . '</span>';