MDL-52081 forms: Use __construct() for constructors
This commit is contained in:
@@ -38,12 +38,18 @@ class HTML_QuickForm_header extends HTML_QuickForm_static
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function HTML_QuickForm_header($elementName = null, $text = null)
|
||||
{
|
||||
$this->HTML_QuickForm_static($elementName, null, $text);
|
||||
public function __construct($elementName = null, $text = null) {
|
||||
parent::__construct($elementName, null, $text);
|
||||
$this->_type = 'header';
|
||||
}
|
||||
|
||||
/**
|
||||
* Old syntax of class constructor for backward compatibility.
|
||||
*/
|
||||
public function HTML_QuickForm_header($elementName = null, $text = null) {
|
||||
self::__construct($elementName, $text);
|
||||
}
|
||||
|
||||
// }}}
|
||||
// {{{ accept()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user