forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete.php
72 lines (65 loc) · 2.27 KB
/
delete.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* Delete group
*
* @copyright © 2008 The Open University
* @author s.marshall AT open.ac.uk
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package groups
*/
require_once('../config.php');
require_once('lib.php');
// Get and check parameters
$courseid = required_param('courseid', PARAM_INT);
$groupids = required_param('groups', PARAM_SEQUENCE);
$confirm = optional_param('confirm', 0, PARAM_BOOL);
// Make sure course is OK and user has access to manage groups
if (!$course = $DB->get_record('course', array('id' => $courseid))) {
print_error('invalidcourseid');
}
require_login($course);
$context = get_context_instance(CONTEXT_COURSE, $course->id);
require_capability('moodle/course:managegroups', $context);
// Make sure all groups are OK and belong to course
$groupidarray = explode(',',$groupids);
$groupnames = array();
foreach($groupidarray as $groupid) {
if (!$group = $DB->get_record('groups', array('id' => $groupid))) {
print_error('invalidgroupid');
}
if ($courseid != $group->courseid) {
print_error('groupunknown', '', '', $group->courseid);
}
$groupnames[] = format_string($group->name);
}
$returnurl='index.php?id='.$course->id;
if(count($groupidarray)==0) {
print_error('errorselectsome','group',$returnurl);
}
if ($confirm && data_submitted()) {
if (!confirm_sesskey() ) {
print_error('confirmsesskeybad','error',$returnurl);
}
$DB->begin_sql();
foreach($groupidarray as $groupid) {
groups_delete_group($groupid);
}
$DB->commit_sql();
redirect($returnurl);
} else {
print_header(get_string('deleteselectedgroup', 'group'), get_string('deleteselectedgroup', 'group'));
$optionsyes = array('courseid'=>$courseid, 'groups'=>$groupids, 'sesskey'=>sesskey(), 'confirm'=>1);
$optionsno = array('id'=>$courseid);
if(count($groupnames)==1) {
$message=get_string('deletegroupconfirm', 'group', $groupnames[0]);
} else {
$message=get_string('deletegroupsconfirm', 'group').'<ul>';
foreach($groupnames as $groupname) {
$message.='<li>'.$groupname.'</li>';
}
$message.='</ul>';
}
notice_yesno($message, 'delete.php', 'index.php', $optionsyes, $optionsno, 'post', 'get');
print_footer();
}
?>