MDL-52081 forms: Use __construct() for constructors
This commit is contained in:
@@ -92,9 +92,8 @@ class HTML_QuickForm_group extends HTML_QuickForm_element
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function HTML_QuickForm_group($elementName=null, $elementLabel=null, $elements=null, $separator=null, $appendName = true)
|
||||
{
|
||||
$this->HTML_QuickForm_element($elementName, $elementLabel);
|
||||
public function __construct($elementName=null, $elementLabel=null, $elements=null, $separator=null, $appendName = true) {
|
||||
parent::__construct($elementName, $elementLabel);
|
||||
$this->_type = 'group';
|
||||
if (isset($elements) && is_array($elements)) {
|
||||
$this->setElements($elements);
|
||||
@@ -107,6 +106,13 @@ class HTML_QuickForm_group extends HTML_QuickForm_element
|
||||
}
|
||||
} //end constructor
|
||||
|
||||
/**
|
||||
* Old syntax of class constructor for backward compatibility.
|
||||
*/
|
||||
public function HTML_QuickForm_group($elementName=null, $elementLabel=null, $elements=null, $separator=null, $appendName = true) {
|
||||
self::__construct($elementName, $elementLabel, $elements, $separator, $appendName);
|
||||
}
|
||||
|
||||
// }}}
|
||||
// {{{ setName()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user