MDL-52081 forms: Use __construct() for constructors

This commit is contained in:
Marina Glancy
2015-12-10 13:45:16 +08:00
parent 6ace0f59ae
commit 696f3dcc83
82 changed files with 761 additions and 208 deletions
+10 -4
View File
@@ -49,14 +49,20 @@ class HTML_QuickForm_static extends HTML_QuickForm_element {
* @access public
* @return void
*/
function HTML_QuickForm_static($elementName=null, $elementLabel=null, $text=null)
{
HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel);
public function __construct($elementName=null, $elementLabel=null, $text=null) {
parent::__construct($elementName, $elementLabel);
$this->_persistantFreeze = false;
$this->_type = 'static';
$this->_text = $text;
} //end constructor
/**
* Old syntax of class constructor for backward compatibility.
*/
public function HTML_QuickForm_static($elementName=null, $elementLabel=null, $text=null) {
self::__construct($elementName, $elementLabel, $text);
}
// }}}
// {{{ setName()