MDL-52081 forms: Use __construct() for constructors
This commit is contained in:
@@ -78,13 +78,19 @@ class HTML_QuickForm_Renderer_Object extends HTML_QuickForm_Renderer
|
||||
* @param collecthidden bool true: collect all hidden elements
|
||||
* @access public
|
||||
*/
|
||||
function HTML_QuickForm_Renderer_Object($collecthidden = false)
|
||||
{
|
||||
$this->HTML_QuickForm_Renderer();
|
||||
public function __construct($collecthidden = false) {
|
||||
parent::__construct();
|
||||
$this->_collectHidden = $collecthidden;
|
||||
$this->_obj = new QuickformForm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Old syntax of class constructor for backward compatibility.
|
||||
*/
|
||||
public function HTML_QuickForm_Renderer_Object($collecthidden = false) {
|
||||
self::__construct($collecthidden);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the rendered Object
|
||||
* @access public
|
||||
|
||||
Reference in New Issue
Block a user