Merge branch 'MDL-74453-master' of https://github.com/dravek/moodle

This commit is contained in:
Ilya Tregubov 2022-06-13 15:03:42 +04:00
commit 6b1122b0ae

View File

@ -21,6 +21,7 @@ namespace core_reportbuilder\local\entities;
use context_helper;
use context_system;
use context_user;
use core_component;
use html_writer;
use lang_string;
use moodle_url;
@ -470,6 +471,31 @@ class user extends base {
))
->add_joins($this->get_joins());
// Authentication method filter.
$filters[] = (new filter(
select::class,
'auth',
new lang_string('authentication', 'moodle'),
$this->get_entity_name(),
"{$tablealias}.auth"
))
->set_options_callback(static function(): array {
$plugins = core_component::get_plugin_list('auth');
$enabled = get_string('pluginenabled', 'core_plugin');
$disabled = get_string('plugindisabled', 'core_plugin');
$authoptions = [$enabled => [], $disabled => []];
foreach ($plugins as $pluginname => $unused) {
$plugin = get_auth_plugin($pluginname);
if (is_enabled_auth($pluginname)) {
$authoptions[$enabled][$pluginname] = $plugin->get_title();
} else {
$authoptions[$disabled][$pluginname] = $plugin->get_title();
}
}
return $authoptions;
});
return $filters;
}