mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
Merge branch 'MDL-61625_master' of git://github.com/dmonllao/moodle
This commit is contained in:
commit
dd9f60ee49
1 changed files with 3 additions and 2 deletions
|
@ -80,9 +80,10 @@ abstract class persistent extends moodleform {
|
||||||
* @param string $target
|
* @param string $target
|
||||||
* @param mixed $attributes
|
* @param mixed $attributes
|
||||||
* @param bool $editable
|
* @param bool $editable
|
||||||
|
* @param array $ajaxformdata
|
||||||
*/
|
*/
|
||||||
public function __construct($action = null, $customdata = null, $method = 'post', $target = '',
|
public function __construct($action = null, $customdata = null, $method = 'post', $target = '',
|
||||||
$attributes = null, $editable = true) {
|
$attributes = null, $editable = true, $ajaxformdata=null) {
|
||||||
if (empty(static::$persistentclass)) {
|
if (empty(static::$persistentclass)) {
|
||||||
throw new coding_exception('Static property $persistentclass must be set.');
|
throw new coding_exception('Static property $persistentclass must be set.');
|
||||||
} else if (!is_subclass_of(static::$persistentclass, 'core\\persistent')) {
|
} else if (!is_subclass_of(static::$persistentclass, 'core\\persistent')) {
|
||||||
|
@ -106,7 +107,7 @@ abstract class persistent extends moodleform {
|
||||||
$this->persistent->from_record($persistendata);
|
$this->persistent->from_record($persistendata);
|
||||||
|
|
||||||
unset($customdata['persistent']);
|
unset($customdata['persistent']);
|
||||||
parent::__construct($action, $customdata, $method, $target, $attributes, $editable);
|
parent::__construct($action, $customdata, $method, $target, $attributes, $editable, $ajaxformdata);
|
||||||
|
|
||||||
// Load the defaults.
|
// Load the defaults.
|
||||||
$this->set_data($this->get_default_data());
|
$this->set_data($this->get_default_data());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue