Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#857 - prevent deprecation warnings shown in all admin pages #858

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/transformer/get_event_function_map.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,14 @@ function get_event_function_map() {
'\totara_program\event\program_assigned' => 'totara_program\program_assigned'
];

global $CFG;
// The use of $CFG->debugusers is interpreted for Moodle core as $forceddebug in the degugging() function.
// Disable temporary $CFG->debugusers to prevent debugging messages throughout administration options.
$debugusers = $CFG->debugusers;
$CFG->debugusers = '';
$environmentevents = class_exists("report_eventlist_list_generator") ?
array_keys(\report_eventlist_list_generator::get_all_events_list(false)) : array_keys($availableevents);
$CFG->debugusers = $debugusers;

return array_filter($availableevents, function($k) use ($environmentevents) {
return in_array($k, $environmentevents);
Expand Down