mirror of
https://github.com/moodle/moodle.git
synced 2025-01-29 11:46:19 +01:00
MDL-58997 calendar: Group names passing multilang filters.
This commit is contained in:
parent
9e7afbbc6c
commit
29b83cbb34
@ -72,7 +72,8 @@ class event_form extends moodleform {
|
||||
if (!empty($eventtypes->groups) && is_array($eventtypes->groups)) {
|
||||
$groupoptions = array();
|
||||
foreach ($eventtypes->groups as $group) {
|
||||
$groupoptions[$group->id] = $group->name;
|
||||
$groupoptions[$group->id] = format_string($group->name, true,
|
||||
array('context' => context_course::instance($group->courseid)));
|
||||
}
|
||||
$mform->addElement('select', 'groupid', get_string('typegroup', 'calendar'), $groupoptions);
|
||||
$mform->disabledIf('groupid', 'eventtype', 'noteq', 'group');
|
||||
|
Loading…
x
Reference in New Issue
Block a user