2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * Course and category management interfaces.
20 * @package core_course
21 * @copyright 2013 Sam Hemelryk
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once('../config.php');
26 require_once($CFG->dirroot
.'/lib/coursecatlib.php');
27 require_once($CFG->dirroot
.'/course/lib.php');
29 $categoryid = optional_param('categoryid', null, PARAM_INT
);
30 $selectedcategoryid = optional_param('selectedcategoryid', null, PARAM_INT
);
31 $courseid = optional_param('courseid', null, PARAM_INT
);
32 $action = optional_param('action', false, PARAM_ALPHA
);
33 $page = optional_param('page', 0, PARAM_INT
);
34 $perpage = optional_param('perpage', null, PARAM_INT
);
35 $viewmode = optional_param('view', 'default', PARAM_ALPHA
); // Can be one of default, combined, courses, or categories.
37 // Search related params.
38 $search = optional_param('search', '', PARAM_RAW
); // Search words. Shortname, fullname, idnumber and summary get searched.
39 $blocklist = optional_param('blocklist', 0, PARAM_INT
); // Find courses containing this block.
40 $modulelist = optional_param('modulelist', '', PARAM_PLUGIN
); // Find courses containing the given modules.
42 if (!in_array($viewmode, array('default', 'combined', 'courses', 'categories'))) {
43 $viewmode = 'default';
46 $issearching = ($search !== '' ||
$blocklist !== 0 ||
$modulelist !== '');
48 $viewmode = 'courses';
51 $url = new moodle_url('/course/management.php');
52 $systemcontext = $context = context_system
::instance();
54 $record = get_course($courseid);
55 $course = new course_in_list($record);
56 $category = coursecat
::get($course->category
);
57 $categoryid = $category->id
;
58 $context = context_coursecat
::instance($category->id
);
59 $url->param('categoryid', $categoryid);
60 $url->param('courseid', $course->id
);
62 } else if ($categoryid) {
65 $category = coursecat
::get($categoryid);
66 $context = context_coursecat
::instance($category->id
);
67 $url->param('categoryid', $category->id
);
72 $category = coursecat
::get_default();
73 $categoryid = $category->id
;
74 $context = context_coursecat
::instance($category->id
);
75 $url->param('categoryid', $category->id
);
78 // Check if there is a selected category param, and if there is apply it.
79 if ($course === null && $selectedcategoryid !== null && $selectedcategoryid !== $categoryid) {
80 $url->param('categoryid', $selectedcategoryid);
84 $url->param('page', $page);
86 if ($viewmode !== 'default') {
87 $url->param('view', $viewmode);
90 $url->param('search', $search);
92 if ($blocklist !== 0) {
93 $url->param('blocklist', $search);
95 if ($modulelist !== '') {
96 $url->param('modulelist', $search);
99 $strmanagement = new lang_string('coursecatmanagement');
100 $pageheading = format_string($SITE->fullname
, true, array('context' => $systemcontext));
102 $PAGE->set_context($context);
103 $PAGE->set_url($url);
104 $PAGE->set_pagelayout('admin');
105 $PAGE->set_title($strmanagement);
106 $PAGE->set_heading($pageheading);
108 // This is a system level page that operates on other contexts.
111 if (!coursecat
::has_capability_on_any(array('moodle/category:manage', 'moodle/course:create'))) {
112 // The user isn't able to manage any categories. Lets redirect them to the relevant course/index.php page.
113 $url = new moodle_url('/course/index.php');
115 $url->param('categoryid', $categoryid);
120 // If the user poses any of these capabilities then they will be able to see the admin
121 // tree and the management link within it.
122 // This is the most accurate form of navigation.
123 $capabilities = array(
124 'moodle/site:config',
125 'moodle/backup:backupcourse',
126 'moodle/category:manage',
127 'moodle/course:create',
128 'moodle/site:approvecourse'
130 if ($category && !has_any_capability($capabilities, $systemcontext)) {
131 // If the user doesn't poses any of these system capabilities then we're going to mark the manage link in the settings block
132 // as active, tell the page to ignore the active path and just build what the user would expect.
133 // This will at least give the page some relevant navigation.
134 navigation_node
::override_active_url(new moodle_url('/course/management.php', array('categoryid' => $category->id
)));
135 $PAGE->set_category_by_id($category->id
);
136 $PAGE->navbar
->ignore_active(true);
137 $PAGE->navbar
->add(get_string('coursemgmt', 'admin'), $PAGE->url
->out_omit_querystring());
139 // If user has system capabilities, make sure the "Manage courses and categories" item in Administration block is active.
140 navigation_node
::require_admin_tree();
141 navigation_node
::override_active_url(new moodle_url('/course/management.php'));
143 if (!$issearching && $category !== null) {
144 $parents = coursecat
::get_many($category->get_parents());
145 $parents[] = $category;
146 foreach ($parents as $parent) {
148 $parent->get_formatted_name(),
149 new moodle_url('/course/management.php', array('categoryid' => $parent->id
))
152 if ($course instanceof course_in_list
) {
153 // Use the list name so that it matches whats being displayed below.
154 $PAGE->navbar
->add($course->get_formatted_name());
158 $notificationspass = array();
159 $notificationsfail = array();
161 if ($action !== false && confirm_sesskey()) {
163 // - resortcategories : Resort the courses in the given category.
164 // - resortcourses : Resort courses
165 // - showcourse : make a course visible.
166 // - hidecourse : make a course hidden.
167 // - movecourseup : move the selected course up one.
168 // - movecoursedown : move the selected course down.
169 // - showcategory : make a category visible.
170 // - hidecategory : make a category hidden.
171 // - movecategoryup : move category up.
172 // - movecategorydown : move category down.
173 // - deletecategory : delete the category either in full, or moving contents.
174 // - bulkaction : performs bulk actions:
175 // - bulkmovecourses.
176 // - bulkmovecategories.
177 // - bulkresortcategories.
178 $redirectback = false;
179 $redirectmessage = false;
181 case 'resortcategories' :
182 $sort = required_param('resort', PARAM_ALPHA
);
183 $cattosort = coursecat
::get((int)optional_param('categoryid', 0, PARAM_INT
));
184 $redirectback = \core_course\management\helper
::action_category_resort_subcategories($cattosort, $sort);
186 case 'resortcourses' :
187 // They must have specified a category.
188 required_param('categoryid', PARAM_INT
);
189 $sort = required_param('resort', PARAM_ALPHA
);
190 \core_course\management\helper
::action_category_resort_courses($category, $sort);
193 $redirectback = \core_course\management\helper
::action_course_show($course);
196 $redirectback = \core_course\management\helper
::action_course_hide($course);
198 case 'movecourseup' :
199 // They must have specified a category and a course.
200 required_param('categoryid', PARAM_INT
);
201 required_param('courseid', PARAM_INT
);
202 $redirectback = \core_course\management\helper
::action_course_change_sortorder_up_one($course, $category);
204 case 'movecoursedown' :
205 // They must have specified a category and a course.
206 required_param('categoryid', PARAM_INT
);
207 required_param('courseid', PARAM_INT
);
208 $redirectback = \core_course\management\helper
::action_course_change_sortorder_down_one($course, $category);
210 case 'showcategory' :
211 // They must have specified a category.
212 required_param('categoryid', PARAM_INT
);
213 $redirectback = \core_course\management\helper
::action_category_show($category);
215 case 'hidecategory' :
216 // They must have specified a category.
217 required_param('categoryid', PARAM_INT
);
218 $redirectback = \core_course\management\helper
::action_category_hide($category);
220 case 'movecategoryup' :
221 // They must have specified a category.
222 required_param('categoryid', PARAM_INT
);
223 $redirectback = \core_course\management\helper
::action_category_change_sortorder_up_one($category);
225 case 'movecategorydown' :
226 // They must have specified a category.
227 required_param('categoryid', PARAM_INT
);
228 $redirectback = \core_course\management\helper
::action_category_change_sortorder_down_one($category);
230 case 'deletecategory':
231 // They must have specified a category.
232 required_param('categoryid', PARAM_INT
);
233 if (!$category->can_delete()) {
234 throw new moodle_exception('permissiondenied', 'error', '', null, 'coursecat::can_resort');
236 $mform = new core_course_deletecategory_form(null, $category);
237 if ($mform->is_cancelled()) {
238 redirect($PAGE->url
);
241 /* @var core_course_management_renderer|core_renderer $renderer */
242 $renderer = $PAGE->get_renderer('core_course', 'management');
243 echo $renderer->header();
244 echo $renderer->heading(get_string('deletecategory', 'moodle', $category->get_formatted_name()));
246 if ($data = $mform->get_data()) {
247 // The form has been submit handle it.
248 if ($data->fulldelete
== 1 && $category->can_delete_full()) {
249 $continueurl = new moodle_url('/course/management.php');
250 if ($category->parent
!= '0') {
251 $continueurl->param('categoryid', $category->parent
);
253 $notification = get_string('coursecategorydeleted', '', $category->get_formatted_name());
254 $deletedcourses = $category->delete_full(true);
255 foreach ($deletedcourses as $course) {
256 echo $renderer->notification(get_string('coursedeleted', '', $course->shortname
), 'notifysuccess');
258 echo $renderer->notification($notification, 'notifysuccess');
259 echo $renderer->continue_button($continueurl);
260 } else if ($data->fulldelete
== 0 && $category->can_move_content_to($data->newparent
)) {
261 $continueurl = new moodle_url('/course/management.php', array('categoryid' => $data->newparent
));
262 $category->delete_move($data->newparent
, true);
263 echo $renderer->continue_button($continueurl);
265 // Some error in parameters (user is cheating?)
272 // Finish output and exit.
273 echo $renderer->footer();
277 $bulkmovecourses = optional_param('bulkmovecourses', false, PARAM_BOOL
);
278 $bulkmovecategories = optional_param('bulkmovecategories', false, PARAM_BOOL
);
279 $bulkresortcategories = optional_param('bulksort', false, PARAM_BOOL
);
281 if ($bulkmovecourses) {
282 // Move courses out of the current category and into a new category.
283 // They must have specified a category.
284 required_param('categoryid', PARAM_INT
);
285 $movetoid = required_param('movecoursesto', PARAM_INT
);
286 $courseids = optional_param_array('bc', false, PARAM_INT
);
287 if ($courseids === false) {
290 $moveto = coursecat
::get($movetoid);
292 // If this fails we want to catch the exception and report it.
293 $redirectback = \core_course\management\helper
::move_courses_into_category($moveto,
297 $a->category
= $moveto->get_formatted_name();
298 $a->courses
= count($courseids);
299 $redirectmessage = get_string('bulkmovecoursessuccess', 'moodle', $a);
301 } catch (moodle_exception
$ex) {
302 $redirectback = false;
303 $notificationsfail[] = $ex->getMessage();
305 } else if ($bulkmovecategories) {
306 $categoryids = optional_param_array('bcat', array(), PARAM_INT
);
307 $movetocatid = required_param('movecategoriesto', PARAM_INT
);
308 $movetocat = coursecat
::get($movetocatid);
310 foreach ($categoryids as $id) {
311 $cattomove = coursecat
::get($id);
312 if ($id == $movetocatid) {
313 $notificationsfail[] = get_string('movecategoryownparent', 'error', $cattomove->get_formatted_name());
316 if (strpos($movetocat->path
, $cattomove->path
) === 0) {
317 $notificationsfail[] = get_string('movecategoryparentconflict', 'error', $cattomove->get_formatted_name());
320 if ($cattomove->parent
!= $movetocatid) {
321 if ($cattomove->can_change_parent($movetocatid)) {
322 $cattomove->change_parent($movetocatid);
325 $notificationsfail[] = get_string('movecategorynotpossible', 'error', $cattomove->get_formatted_name());
329 if ($movecount > 1) {
331 $a->count
= $movecount;
332 $a->to
= $movetocat->get_formatted_name();
333 $movesuccessstrkey = 'movecategoriessuccess';
334 if ($movetocatid == 0) {
335 $movesuccessstrkey = 'movecategoriestotopsuccess';
337 $notificationspass[] = get_string($movesuccessstrkey, 'moodle', $a);
338 } else if ($movecount === 1) {
340 $a->moved
= $cattomove->get_formatted_name();
341 $a->to
= $movetocat->get_formatted_name();
342 $movesuccessstrkey = 'movecategorysuccess';
343 if ($movetocatid == 0) {
344 $movesuccessstrkey = 'movecategorytotopsuccess';
346 $notificationspass[] = get_string($movesuccessstrkey, 'moodle', $a);
348 } else if ($bulkresortcategories) {
349 $for = required_param('selectsortby', PARAM_ALPHA
);
350 $sortcategoriesby = required_param('resortcategoriesby', PARAM_ALPHA
);
351 $sortcoursesby = required_param('resortcoursesby', PARAM_ALPHA
);
353 if ($sortcategoriesby === 'none' && $sortcoursesby === 'none') {
354 // They're not sorting anything.
357 if (!in_array($sortcategoriesby, array('idnumber', 'idnumberdesc',
358 'name', 'namedesc'))) {
359 $sortcategoriesby = false;
361 if (!in_array($sortcoursesby, array('timecreated', 'timecreateddesc',
362 'idnumber', 'idnumberdesc',
363 'fullname', 'fullnamedesc',
364 'shortname', 'shortnamedesc'))) {
365 $sortcoursesby = false;
368 if ($for === 'thiscategory') {
369 $categoryids = array(
370 required_param('currentcategoryid', PARAM_INT
)
372 $categories = coursecat
::get_many($categoryids);
373 } else if ($for === 'selectedcategories') {
374 // Bulk resort selected categories.
375 $categoryids = optional_param_array('bcat', false, PARAM_INT
);
376 $sort = required_param('resortcategoriesby', PARAM_ALPHA
);
377 if ($categoryids === false) {
380 $categories = coursecat
::get_many($categoryids);
381 } else if ($for === 'allcategories') {
382 if ($sortcategoriesby && coursecat
::get(0)->can_resort_subcategories()) {
383 \core_course\management\helper
::action_category_resort_subcategories(coursecat
::get(0), $sortcategoriesby);
385 $categorieslist = coursecat
::make_categories_list('moodle/category:manage');
386 $categoryids = array_keys($categorieslist);
387 $categories = coursecat
::get_many($categoryids);
388 unset($categorieslist);
392 foreach ($categories as $cat) {
393 if ($sortcategoriesby && $cat->can_resort_subcategories()) {
394 // Don't clean up here, we'll do it once we're all done.
395 \core_course\management\helper
::action_category_resort_subcategories($cat, $sortcategoriesby, false);
397 if ($sortcoursesby && $cat->can_resort_courses()) {
398 \core_course\management\helper
::action_category_resort_courses($cat, $sortcoursesby, false);
401 coursecat
::resort_categories_cleanup($sortcoursesby !== false);
402 if ($category === null && count($categoryids) === 1) {
403 // They're bulk sorting just a single category and they've not selected a category.
404 // Lets for convenience sake auto-select the category that has been resorted for them.
405 redirect(new moodle_url($PAGE->url
, array('categoryid' => reset($categoryids))));
410 if ($redirectmessage) {
411 redirect($PAGE->url
, $redirectmessage, 5);
413 redirect($PAGE->url
);
418 if (!is_null($perpage)) {
419 set_user_preference('coursecat_management_perpage', $perpage);
421 $perpage = get_user_preferences('coursecat_management_perpage', $CFG->coursesperpage
);
423 if ((int)$perpage != $perpage ||
$perpage < 2) {
424 $perpage = $CFG->coursesperpage
;
430 if ($viewmode === 'default' ||
$viewmode === 'combined') {
431 if (isset($courseid)) {
432 $class = 'columns-3';
436 $class = 'columns-2';
438 } else if ($viewmode === 'categories') {
440 $class = 'columns-1';
441 } else if ($viewmode === 'courses') {
442 if (isset($courseid)) {
445 $class = 'columns-2';
448 $class = 'columns-1';
451 if ($viewmode === 'default' ||
$viewmode === 'combined') {
452 $class .= ' viewmode-cobmined';
454 $class .= ' viewmode-'.$viewmode;
456 if (($viewmode === 'default' ||
$viewmode === 'combined' ||
$viewmode === 'courses') && !empty($courseid)) {
457 $class .= ' course-selected';
460 /* @var core_course_management_renderer|core_renderer $renderer */
461 $renderer = $PAGE->get_renderer('core_course', 'management');
462 $renderer->enhance_management_interface();
464 $displaycategorylisting = ($viewmode === 'default' ||
$viewmode === 'combined' ||
$viewmode === 'categories');
465 $displaycourselisting = ($viewmode === 'default' ||
$viewmode === 'combined' ||
$viewmode === 'courses');
466 $displaycoursedetail = (isset($courseid));
468 echo $renderer->header();
471 echo $renderer->management_heading($strmanagement, $viewmode, $categoryid);
473 echo $renderer->management_heading(new lang_string('searchresults'));
476 if (count($notificationspass) > 0) {
477 echo $renderer->notification(join('<br />', $notificationspass), 'notifysuccess');
479 if (count($notificationsfail) > 0) {
480 echo $renderer->notification(join('<br />', $notificationsfail));
483 // Start the management form.
484 echo $renderer->management_form_start();
486 echo $renderer->accessible_skipto_links($displaycategorylisting, $displaycourselisting, $displaycoursedetail);
488 echo $renderer->grid_start('course-category-listings', $class);
490 if ($displaycategorylisting) {
491 echo $renderer->grid_column_start($categorysize, 'category-listing');
492 echo $renderer->category_listing($category);
493 echo $renderer->grid_column_end();
495 if ($displaycourselisting) {
496 echo $renderer->grid_column_start($coursesize, 'course-listing');
498 echo $renderer->course_listing($category, $course, $page, $perpage, $viewmode);
500 list($courses, $coursescount, $coursestotal) =
501 \core_course\management\helper
::search_courses($search, $blocklist, $modulelist, $page, $perpage);
502 echo $renderer->search_listing($courses, $coursestotal, $course, $page, $perpage, $search);
504 echo $renderer->grid_column_end();
505 if ($displaycoursedetail) {
506 echo $renderer->grid_column_start($detailssize, 'course-detail');
507 echo $renderer->course_detail($course);
508 echo $renderer->grid_column_end();
511 echo $renderer->grid_end();
513 // End of the management form.
514 echo $renderer->management_form_end();
515 echo $renderer->course_search_form($search);
517 echo $renderer->footer();