mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
7fd4d8d0ef
- required_param calls - added parameter type. - put 'require' first. - use @header, added charset. (Bug MDL-7380 "groups".)
41 lines
1012 B
PHP
41 lines
1012 B
PHP
<?php
|
|
/**********************************************
|
|
* Adds an existing group to a grouping
|
|
**********************************************/
|
|
|
|
require_once('../../config.php');
|
|
require_once('../lib/lib.php');
|
|
|
|
@header('Content-Type: text/xml; charset=utf-8');
|
|
echo '<?xml version="1.0" encoding="utf-8"?>';
|
|
echo '<groupsresponse>';
|
|
|
|
$groupingid = required_param('groupingid', PARAM_INT);
|
|
$courseid = required_param('courseid', PARAM_INT);
|
|
|
|
require_login($courseid);
|
|
|
|
if (confirm_sesskey() and isteacheredit($courseid)) {
|
|
$groupids = groups_get_groups_in_grouping($groupingid);
|
|
|
|
if ($groupids != false) {
|
|
// Put the groupings into a hash and sort them
|
|
foreach($groupids as $groupid) {
|
|
$listgroups[$groupid] = groups_get_group_displayname($groupid);
|
|
}
|
|
|
|
natcasesort($listgroups);
|
|
|
|
// Print out the XML
|
|
echo "<option>";
|
|
foreach($listgroups as $value=>$name) {
|
|
echo "<name>$name</name>";
|
|
echo "<value>$value</value>";
|
|
}
|
|
echo "</option>";
|
|
}
|
|
}
|
|
|
|
echo '</groupsresponse>';
|
|
?>
|