mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
Merge branch 'MDL-65086-master' of git://github.com/peterRd/moodle
This commit is contained in:
commit
c196068cc4
@ -300,18 +300,12 @@ class manager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the enabled time splitting methods.
|
* @deprecated since Moodle 3.7 use get_time_splitting_methods_for_evaluation instead
|
||||||
*
|
|
||||||
* @deprecated since Moodle 3.7
|
|
||||||
* @todo MDL-65086 This will be deleted in Moodle 3.11
|
|
||||||
* @see \core_analytics\manager::get_time_splitting_methods_for_evaluation
|
|
||||||
* @return \core_analytics\local\time_splitting\base[]
|
|
||||||
*/
|
*/
|
||||||
public static function get_enabled_time_splitting_methods() {
|
public static function get_enabled_time_splitting_methods() {
|
||||||
debugging('This function has been deprecated. You can use self::get_time_splitting_methods_for_evaluation if ' .
|
throw new coding_exception(__FUNCTION__ . '() has been removed. You can use self::get_time_splitting_methods_for_evaluation if ' .
|
||||||
'you want to get the default time splitting methods for evaluation, or you can use self::get_all_time_splittings if ' .
|
'you want to get the default time splitting methods for evaluation, or you can use self::get_all_time_splittings if ' .
|
||||||
'you want to get all the time splitting methods available on this site.');
|
'you want to get all the time splitting methods available on this site.');
|
||||||
return self::get_time_splitting_methods_for_evaluation();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
This files describes API changes in analytics sub system,
|
This files describes API changes in analytics sub system,
|
||||||
information provided here is intended especially for developers.
|
information provided here is intended especially for developers.
|
||||||
|
|
||||||
|
=== 3.11 ===
|
||||||
|
* Final deprecation get_enabled_time_splitting_methods. Method has been removed. Use
|
||||||
|
get_time_splitting_methods_for_evaluation instead.
|
||||||
|
|
||||||
=== 3.8 ===
|
=== 3.8 ===
|
||||||
|
|
||||||
* "Time-splitting method" have been replaced by "Analysis interval" for the language strings that are
|
* "Time-splitting method" have been replaced by "Analysis interval" for the language strings that are
|
||||||
|
Loading…
x
Reference in New Issue
Block a user