Merge branch 'wip-mdl-41843-m25' of git://github.com/rajeshtaneja/moodle into MOODLE_...
[moodle.git] / cohort / assign.php
blob2da394deab66bf919e94ca76b0e4952e9d2d71de
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Cohort related management functions, this file needs to be included manually.
20 * @package core_cohort
21 * @copyright 2010 Petr Skoda {@link http://skodak.org}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require('../config.php');
26 require_once($CFG->dirroot.'/cohort/locallib.php');
28 $id = required_param('id', PARAM_INT);
30 require_login();
32 $cohort = $DB->get_record('cohort', array('id'=>$id), '*', MUST_EXIST);
33 $context = context::instance_by_id($cohort->contextid, MUST_EXIST);
35 require_capability('moodle/cohort:assign', $context);
37 $PAGE->set_context($context);
38 $PAGE->set_url('/cohort/assign.php', array('id'=>$id));
40 $returnurl = new moodle_url('/cohort/index.php', array('contextid'=>$cohort->contextid));
42 if (!empty($cohort->component)) {
43 // We can not manually edit cohorts that were created by external systems, sorry.
44 redirect($returnurl);
47 if (optional_param('cancel', false, PARAM_BOOL)) {
48 redirect($returnurl);
51 if ($context->contextlevel == CONTEXT_COURSECAT) {
52 $category = $DB->get_record('course_categories', array('id'=>$context->instanceid), '*', MUST_EXIST);
53 navigation_node::override_active_url(new moodle_url('/cohort/index.php', array('contextid'=>$cohort->contextid)));
54 $PAGE->set_pagelayout('report');
56 } else {
57 navigation_node::override_active_url(new moodle_url('/cohort/index.php', array()));
58 $PAGE->set_pagelayout('admin');
60 $PAGE->navbar->add(get_string('assign', 'cohort'));
62 $PAGE->set_title(get_string('cohort:assign', 'cohort'));
63 $PAGE->set_heading($COURSE->fullname);
65 echo $OUTPUT->header();
66 echo $OUTPUT->heading(get_string('assignto', 'cohort', format_string($cohort->name)));
68 echo $OUTPUT->notification(get_string('removeuserwarning', 'core_cohort'));
70 // Get the user_selector we will need.
71 $potentialuserselector = new cohort_candidate_selector('addselect', array('cohortid'=>$cohort->id, 'accesscontext'=>$context));
72 $existinguserselector = new cohort_existing_selector('removeselect', array('cohortid'=>$cohort->id, 'accesscontext'=>$context));
74 // Process incoming user assignments to the cohort
76 if (optional_param('add', false, PARAM_BOOL) && confirm_sesskey()) {
77 $userstoassign = $potentialuserselector->get_selected_users();
78 if (!empty($userstoassign)) {
80 foreach ($userstoassign as $adduser) {
81 cohort_add_member($cohort->id, $adduser->id);
84 $potentialuserselector->invalidate_selected_users();
85 $existinguserselector->invalidate_selected_users();
89 // Process removing user assignments to the cohort
90 if (optional_param('remove', false, PARAM_BOOL) && confirm_sesskey()) {
91 $userstoremove = $existinguserselector->get_selected_users();
92 if (!empty($userstoremove)) {
93 foreach ($userstoremove as $removeuser) {
94 cohort_remove_member($cohort->id, $removeuser->id);
96 $potentialuserselector->invalidate_selected_users();
97 $existinguserselector->invalidate_selected_users();
101 // Print the form.
103 <form id="assignform" method="post" action="<?php echo $PAGE->url ?>"><div>
104 <input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" />
106 <table summary="" class="generaltable generalbox boxaligncenter" cellspacing="0">
107 <tr>
108 <td id="existingcell">
109 <p><label for="removeselect"><?php print_string('currentusers', 'cohort'); ?></label></p>
110 <?php $existinguserselector->display() ?>
111 </td>
112 <td id="buttonscell">
113 <div id="addcontrols">
114 <input name="add" id="add" type="submit" value="<?php echo $OUTPUT->larrow().'&nbsp;'.s(get_string('add')); ?>" title="<?php p(get_string('add')); ?>" /><br />
115 </div>
117 <div id="removecontrols">
118 <input name="remove" id="remove" type="submit" value="<?php echo s(get_string('remove')).'&nbsp;'.$OUTPUT->rarrow(); ?>" title="<?php p(get_string('remove')); ?>" />
119 </div>
120 </td>
121 <td id="potentialcell">
122 <p><label for="addselect"><?php print_string('potusers', 'cohort'); ?></label></p>
123 <?php $potentialuserselector->display() ?>
124 </td>
125 </tr>
126 <tr><td colspan="3" id='backcell'>
127 <input type="submit" name="cancel" value="<?php p(get_string('backtocohorts', 'cohort')); ?>" />
128 </td></tr>
129 </table>
130 </div></form>
132 <?php
134 echo $OUTPUT->footer();