mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 05:28:30 +01:00
MDL-79397 reportbuilder: update existing entity table definitions.
This commit is contained in:
parent
fb53d081da
commit
7143cf4cbc
@ -46,12 +46,14 @@ class task_log extends base {
|
||||
protected const FAILED = 1;
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['task_log' => 'tl'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'task_log',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -34,14 +34,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class role extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'context' => 'rctx',
|
||||
'role' => 'r',
|
||||
'context',
|
||||
'role',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -44,16 +44,16 @@ require_once("{$CFG->libdir}/badgeslib.php");
|
||||
class badge extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'badge' => 'b',
|
||||
'context' => 'bctx',
|
||||
'tag_instance' => 'bti',
|
||||
'tag' => 'bt',
|
||||
'badge',
|
||||
'context',
|
||||
'tag_instance',
|
||||
'tag',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -34,12 +34,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class badge_issued extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['badge_issued' => 'bi'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'badge_issued',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -38,15 +38,15 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class blog extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'post' => 'bp',
|
||||
'tag_instance' => 'bti',
|
||||
'tag' => 'bt',
|
||||
'post',
|
||||
'tag_instance',
|
||||
'tag',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -42,14 +42,14 @@ use core_reportbuilder\local\report\filter;
|
||||
class cohort extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'cohort' => 'c',
|
||||
'context' => 'chctx',
|
||||
'cohort',
|
||||
'context',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -35,12 +35,14 @@ use core_reportbuilder\local\report\filter;
|
||||
class cohort_member extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['cohort_members' => 'cm'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'cohort_members',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -38,14 +38,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class comment extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'comments' => 'c',
|
||||
'context' => 'cmctx',
|
||||
'comments',
|
||||
'context',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -36,12 +36,15 @@ use stdClass;
|
||||
class access extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['user_lastaccess' => 'ula', 'user' => 'u'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'user_lastaccess',
|
||||
'user',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -42,17 +42,17 @@ use stdClass;
|
||||
class completion extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'course_completion' => 'ccomp',
|
||||
'course' => 'c',
|
||||
'grade_grades' => 'gg',
|
||||
'grade_items' => 'gi',
|
||||
'user' => 'u',
|
||||
'course_completion',
|
||||
'course',
|
||||
'grade_grades' ,
|
||||
'grade_items',
|
||||
'user',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -40,14 +40,14 @@ use core_reportbuilder\local\report\filter;
|
||||
class course_category extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'context' => 'ccctx',
|
||||
'course_categories' => 'cc',
|
||||
'context',
|
||||
'course_categories',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -42,12 +42,15 @@ use stdClass;
|
||||
class enrolment extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['user_enrolments' => 'ue', 'enrol' => 'e'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'user_enrolments',
|
||||
'enrol',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -34,13 +34,13 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class enrol extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'enrol' => 'e',
|
||||
'enrol',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -41,14 +41,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class file extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'files' => 'f',
|
||||
'context' => 'fctx',
|
||||
'files',
|
||||
'context',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -59,12 +59,14 @@ class grade_items extends base {
|
||||
}
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['grade_items' => 'gi'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'grade_items',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -44,14 +44,14 @@ require_once("{$CFG->libdir}/grouplib.php");
|
||||
class group extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'context' => 'gctx',
|
||||
'groups' => 'g',
|
||||
'context',
|
||||
'groups',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -34,13 +34,13 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class group_member extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'groups_members' => 'gm',
|
||||
'groups_members',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -37,14 +37,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class grouping extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'context' => 'ggctx',
|
||||
'groupings' => 'gg',
|
||||
'context',
|
||||
'groupings',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -36,12 +36,14 @@ use stdClass;
|
||||
class context extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['context' => 'ctx'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'context',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -35,12 +35,15 @@ use core_reportbuilder\local\report\filter;
|
||||
class tool_types extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['lti_types' => 'tt', 'lti' => 'ti'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'lti_types',
|
||||
'lti',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -40,12 +40,14 @@ require_once("{$CFG->dirroot}/notes/lib.php");
|
||||
class note extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['post' => 'np'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'post',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -36,12 +36,14 @@ use core_reportbuilder\local\filters\text;
|
||||
class config_change extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['config_log' => 'cl'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'config_log',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -50,16 +50,16 @@ require_once($CFG->dirroot . '/course/lib.php');
|
||||
class course extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases.
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'course' => 'c',
|
||||
'context' => 'cctx',
|
||||
'tag_instance' => 'cti',
|
||||
'tag' => 'ct',
|
||||
'course',
|
||||
'context',
|
||||
'tag_instance',
|
||||
'tag',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -50,16 +50,16 @@ use core_reportbuilder\local\report\filter;
|
||||
class user extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'user' => 'u',
|
||||
'context' => 'uctx',
|
||||
'tag_instance' => 'uti',
|
||||
'tag' => 'ut',
|
||||
'user',
|
||||
'context',
|
||||
'tag_instance',
|
||||
'tag',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -36,12 +36,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class collection extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['tag_coll' => 'tc'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'tag_coll',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -40,14 +40,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class instance extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'tag_instance' => 'ti',
|
||||
'context' => 'tictx',
|
||||
'tag_instance',
|
||||
'context',
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -38,12 +38,14 @@ use core_reportbuilder\local\report\{column, filter};
|
||||
class tag extends base {
|
||||
|
||||
/**
|
||||
* Database tables that this entity uses and their default aliases
|
||||
* Database tables that this entity uses
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
protected function get_default_table_aliases(): array {
|
||||
return ['tag' => 't'];
|
||||
protected function get_default_tables(): array {
|
||||
return [
|
||||
'tag',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user