MDL-74606 mod_assign: Support multilanguage strings in group names.

This commit is contained in:
Thorsten Siegmund Bartel
2022-10-05 12:54:09 +02:00
parent cdd954430f
commit 02e99e4a4d
+2 -2
View File
@@ -2787,7 +2787,7 @@ class mod_assign_external extends \mod_assign\external\external_api {
'submissionstatus' => new external_value(PARAM_ALPHA, 'The submission status (new, draft, reopened or submitted).
Empty when not submitted.', VALUE_OPTIONAL),
'groupid' => new external_value(PARAM_INT, 'for group assignments this is the group id', VALUE_OPTIONAL),
'groupname' => new external_value(PARAM_NOTAGS, 'for group assignments this is the group name', VALUE_OPTIONAL),
'groupname' => new external_value(PARAM_TEXT, 'for group assignments this is the group name', VALUE_OPTIONAL),
];
// Merge keys.
@@ -2901,7 +2901,7 @@ class mod_assign_external extends \mod_assign\external\external_api {
'cutoffdate' => new external_value(PARAM_INT, 'cutoffdate for the user'),
'duedatestr' => new external_value(PARAM_TEXT, 'duedate for the user'),
'groupid' => new external_value(PARAM_INT, 'for group assignments this is the group id', VALUE_OPTIONAL),
'groupname' => new external_value(PARAM_NOTAGS, 'for group assignments this is the group name', VALUE_OPTIONAL),
'groupname' => new external_value(PARAM_TEXT, 'for group assignments this is the group name', VALUE_OPTIONAL),
'submissionstatus' => new external_value(PARAM_ALPHA, 'The submission status (new, draft, reopened or submitted).
Empty when not submitted.', VALUE_OPTIONAL),
'user' => $userdescription,