MDL-52081 forms: Use __construct() for constructors
This commit is contained in:
@@ -40,12 +40,21 @@ class HTML_QuickForm_html extends HTML_QuickForm_static
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function HTML_QuickForm_html($text = null)
|
||||
{
|
||||
$this->HTML_QuickForm_static(null, null, $text);
|
||||
public function __construct($text = null) {
|
||||
parent::__construct(null, null, $text);
|
||||
$this->_type = 'html';
|
||||
}
|
||||
|
||||
/**
|
||||
* Old syntax of class constructor. Deprecated in PHP7.
|
||||
*
|
||||
* @deprecated since Moodle 3.1
|
||||
*/
|
||||
public function HTML_QuickForm_html($text = null) {
|
||||
debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER);
|
||||
self::__construct($text);
|
||||
}
|
||||
|
||||
// }}}
|
||||
// {{{ accept()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user