MDL-52081 forms: Use __construct() for constructors
This commit is contained in:
+12
-2
@@ -45,8 +45,18 @@ class MoodleQuickForm_submit extends HTML_QuickForm_submit {
|
||||
* @param string $value (optional) field label
|
||||
* @param string $attributes (optional) Either a typical HTML attribute string or an associative array
|
||||
*/
|
||||
function MoodleQuickForm_submit($elementName=null, $value=null, $attributes=null) {
|
||||
parent::HTML_QuickForm_submit($elementName, $value, $attributes);
|
||||
public function __construct($elementName=null, $value=null, $attributes=null) {
|
||||
parent::__construct($elementName, $value, $attributes);
|
||||
}
|
||||
|
||||
/**
|
||||
* Old syntax of class constructor. Deprecated in PHP7.
|
||||
*
|
||||
* @deprecated since Moodle 3.1
|
||||
*/
|
||||
public function MoodleQuickForm_submit($elementName=null, $value=null, $attributes=null) {
|
||||
debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER);
|
||||
self::__construct($elementName, $value, $attributes);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user