MDL-52081 forms: Use __construct() for constructors
This commit is contained in:
@@ -45,11 +45,17 @@ class HTML_QuickForm_input extends HTML_QuickForm_element
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function HTML_QuickForm_input($elementName=null, $elementLabel=null, $attributes=null)
|
||||
{
|
||||
$this->HTML_QuickForm_element($elementName, $elementLabel, $attributes);
|
||||
public function __construct($elementName=null, $elementLabel=null, $attributes=null) {
|
||||
parent::__construct($elementName, $elementLabel, $attributes);
|
||||
} //end constructor
|
||||
|
||||
/**
|
||||
* Old syntax of class constructor for backward compatibility.
|
||||
*/
|
||||
public function HTML_QuickForm_input($elementName=null, $elementLabel=null, $attributes=null) {
|
||||
self::__construct($elementName, $elementLabel, $attributes);
|
||||
}
|
||||
|
||||
// }}}
|
||||
// {{{ setType()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user