MDL-81776 reportbuilder: Check tagarea enabled when check availability

- When checking availability for a column/filter we need to assert
tagarea is enabled because it can return also null value.
This commit is contained in:
David Carrillo 2024-05-03 11:40:35 +02:00
parent 67b2c43225
commit 45b43d137f
No known key found for this signature in database
GPG Key ID: F805F8542D4C72CD

View File

@ -181,7 +181,7 @@ class reports_list extends system_report {
AND ti.itemid = {$tablealias}.id
)", 'tags')
->set_is_sortable(true)
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report'))
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report') === true)
->add_callback(static function(?string $tags): string {
return implode(', ', array_map(static function(string $tag): string {
[$name, $rawname] = explode('|', $tag);
@ -265,7 +265,7 @@ class reports_list extends system_report {
'component' => 'core_reportbuilder',
'itemtype' => 'reportbuilder_report',
])
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report'))
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report') === true)
);
// Time created filter.