forcelogin) { require_login(); } if (!$site = get_site()) { print_error('siteisnotdefined', 'debug'); } $systemcontext = get_context_instance(CONTEXT_SYSTEM); $PAGE->set_url('course/index.php'); $PAGE->set_context($systemcontext); if (update_category_button()) { if ($categoryedit !== -1) { $USER->editing = $categoryedit; } $adminediting = $PAGE->user_is_editing(); } else { $adminediting = false; } $stradministration = get_string('administration'); $strcategories = get_string('categories'); $strcategory = get_string('category'); $strcourses = get_string('courses'); $stredit = get_string('edit'); $strdelete = get_string('delete'); $straction = get_string('action'); /// Unless it's an editing admin, just print the regular listing of courses/categories if (!$adminediting) { /// Print form for creating new categories $countcategories = $DB->count_records('course_categories'); if ($countcategories > 1 || ($countcategories == 1 && $DB->count_records('course') > 200)) { $strcourses = get_string('courses'); $strcategories = get_string('categories'); $navlinks = array(); $navlinks[] = array('name'=>$strcategories,'link'=>'','type'=>'misc'); $navigation = build_navigation($navlinks); print_header("$site->shortname: $strcategories", $strcourses, $navigation, '', '', true, update_category_button()); print_heading($strcategories); echo skip_main_destination(); print_box_start('categorybox'); print_whole_category_list(); print_box_end(); print_course_search(); } else { $strfulllistofcourses = get_string('fulllistofcourses'); print_header("$site->shortname: $strfulllistofcourses", $strfulllistofcourses, build_navigation(array(array('name'=>$strfulllistofcourses, 'link'=>'','type'=>'misc'))), '', '', true, update_category_button()); echo skip_main_destination(); print_box_start('courseboxes'); print_courses(0); print_box_end(); } echo '
'; print_footer(); exit; } /// Everything else is editing on mode. /// Delete a category. if (!empty($delete) and confirm_sesskey()) { if (!$deletecat = $DB->get_record('course_categories', array('id'=>$delete))) { print_error('invalidcategoryid'); } $context = get_context_instance(CONTEXT_COURSECAT, $delete); require_capability('moodle/category:manage', $context); require_capability('moodle/category:manage', get_category_or_system_context($deletecat->parent)); $heading = get_string('deletecategory', '', format_string($deletecat->name)); require_once('delete_category_form.php'); $mform = new delete_category_form(null, $deletecat); $mform->set_data(array('delete'=>$delete)); if ($mform->is_cancelled()) { redirect('index.php'); } else if (!$data= $mform->get_data()) { require_once($CFG->libdir . '/questionlib.php'); print_category_edit_header(); print_heading($heading); $mform->display(); admin_externalpage_print_footer(); exit(); } print_category_edit_header(); print_heading($heading); if ($data->fulldelete) { $deletedcourses = category_delete_full($deletecat, true); foreach($deletedcourses as $course) { notify(get_string('coursedeleted', '', $course->shortname), 'notifysuccess'); } notify(get_string('coursecategorydeleted', '', format_string($deletecat->name)), 'notifysuccess'); } else { category_delete_move($deletecat, $data->newparent, true); } // If we deleted $CFG->defaultrequestcategory, make it point somewhere else. if ($delete == $CFG->defaultrequestcategory) { set_config('defaultrequestcategory', $DB->get_field('course_categories', 'MIN(id)', array('parent'=>0))); } print_continue('index.php'); admin_externalpage_print_footer(); die; } /// Print headings print_category_edit_header(); print_heading($strcategories); /// Create a default category if necessary if (!$categories = get_categories()) { /// No category yet! // Try and make one $tempcat = new object(); $tempcat->name = get_string('miscellaneous'); $tempcat->id = $DB->insert_record('course_categories', $tempcat); $tempcat->context = get_context_instance(CONTEXT_COURSECAT, $tempcat->id); mark_context_dirty('/'.SYSCONTEXTID); fix_course_sortorder(); // Required to build course_categories.depth and .path. } /// Move a category to a new parent if required if (!empty($move) and ($moveto >= 0) and confirm_sesskey()) { if ($cattomove = $DB->get_record('course_categories', array('id'=>$move))) { require_capability('moodle/category:manage', get_category_or_system_context($cattomove->parent)); if ($cattomove->parent != $moveto) { $newparent = $DB->get_record('course_categories', array('id'=>$moveto)); require_capability('moodle/category:manage', get_category_or_system_context($moveto)); move_category($cattomove, $newparent); } } } /// Hide or show a category if ((!empty($hide) or !empty($show)) and confirm_sesskey()) { if (!empty($hide)) { $tempcat = $DB->get_record('course_categories', array('id'=>$hide)); $visible = 0; } else { $tempcat = $DB->get_record('course_categories', array('id'=>$show)); $visible = 1; } require_capability('moodle/category:manage', get_category_or_system_context($tempcat->parent)); if ($tempcat) { $DB->set_field('course_categories', 'visible', $visible, array('id'=>$tempcat->id)); $DB->set_field('course', 'visible', $visible, array('category' => $tempcat->id)); } } /// Move a category up or down if ((!empty($moveup) or !empty($movedown)) and confirm_sesskey()) { fix_course_sortorder(); $swapcategory = NULL; if (!empty($moveup)) { require_capability('moodle/category:manage', get_context_instance(CONTEXT_COURSECAT, $moveup)); if ($movecategory = $DB->get_record('course_categories', array('id'=>$moveup))) { if ($swapcategory = $DB->get_records_select('course_categories', "sortorder AND parent=?", array($movecategory->sortorder, $movecategory->parent), 'sortorder ASC', '*', 0, 1)) { $swapcategory = reset($swapcategory); } } } else { require_capability('moodle/category:manage', get_context_instance(CONTEXT_COURSECAT, $movedown)); if ($movecategory = $DB->get_record('course_categories', array('id'=>$movedown))) { if ($swapcategory = $DB->get_records_select('course_categories', "sortorder>? AND parent=?", array($movecategory->sortorder, $movecategory->parent), 'sortorder ASC', '*', 0, 1)) { $swapcategory = reset($swapcategory); } } } if ($swapcategory and $movecategory) { $DB->set_field('course_categories', 'sortorder', $swapcategory->sortorder, array('id'=>$movecategory->id)); $DB->set_field('course_categories', 'sortorder', $movecategory->sortorder, array('id'=>$swapcategory->id)); } // finally reorder courses fix_course_sortorder(); } /// Print out the categories with all the knobs $strcategories = get_string('categories'); $strcourses = get_string('courses'); $strmovecategoryto = get_string('movecategoryto'); $stredit = get_string('edit'); $displaylist = array(); $parentlist = array(); $displaylist[0] = get_string('top'); make_categories_list($displaylist, $parentlist); echo ''.$strcategories.' | '; echo ''.$strcourses.' | '; echo ''.$stredit.' | '; echo ''.$strmovecategoryto.' | '; echo '
---|