mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-71953-behat' of git://github.com/HuongNV13/moodle
This commit is contained in:
commit
453db3dcab
@ -101,6 +101,19 @@ class event_exporter_base extends exporter {
|
||||
if ($cm = $event->get_course_module()) {
|
||||
$data->modulename = $cm->get('modname');
|
||||
$data->instance = $cm->get('id');
|
||||
$data->activityname = $cm->get('name');
|
||||
|
||||
$component = 'mod_' . $data->modulename;
|
||||
if (!component_callback_exists($component, 'core_calendar_get_event_action_string')) {
|
||||
$modulename = get_string('modulename', $data->modulename);
|
||||
$data->activitystr = get_string('requiresaction', 'calendar', $modulename);
|
||||
} else {
|
||||
$data->activitystr = component_callback(
|
||||
$component,
|
||||
'core_calendar_get_event_action_string',
|
||||
[$event->get_type()]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
parent::__construct($data, $related);
|
||||
@ -175,6 +188,18 @@ class event_exporter_base extends exporter {
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'activityname' => [
|
||||
'type' => PARAM_TEXT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'activitystr' => [
|
||||
'type' => PARAM_TEXT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'instance' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user