mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 13:02:07 +02:00
Merge branch 'MDL-79735-master' of https://github.com/andrewnicols/moodle
This commit is contained in:
commit
ea3a4f296d
@ -8182,19 +8182,8 @@ function plugin_callback($type, $name, $feature, $action, $params = null, $defau
|
||||
* @return mixed
|
||||
*/
|
||||
function component_callback($component, $function, array $params = array(), $default = null, bool $migratedtohook = false) {
|
||||
|
||||
$functionname = component_callback_exists($component, $function);
|
||||
|
||||
if ($params && (array_keys($params) !== range(0, count($params) - 1))) {
|
||||
// PHP 8 allows to have associative arrays in the call_user_func_array() parameters but
|
||||
// PHP 7 does not. Using associative arrays can result in different behavior in different PHP versions.
|
||||
// See https://php.watch/versions/8.0/named-parameters#named-params-call_user_func_array
|
||||
// This check can be removed when minimum PHP version for Moodle is raised to 8.
|
||||
debugging('Parameters array can not be an associative array while Moodle supports both PHP 7 and PHP 8.',
|
||||
DEBUG_DEVELOPER);
|
||||
$params = array_values($params);
|
||||
}
|
||||
|
||||
if ($functionname) {
|
||||
if ($migratedtohook) {
|
||||
if (\core\hook\manager::get_instance()->is_deprecated_plugin_callback($function)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user