MDL-11515:
[moodle-linuxchix.git] / question / category.php
blob25e87b64206e71736b72cf4af97eba0e93d1316d
1 <?php // $Id$
2 /**
3 * Allows a teacher to create, edit and delete categories
5 * @author Martin Dougiamas and many others.
6 * {@link http://moodle.org}
7 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
8 * @package questionbank
9 */
11 require_once("../config.php");
12 require_once($CFG->dirroot."/question/editlib.php");
13 require_once($CFG->dirroot."/question/category_class.php");
17 list($thispageurl, $contexts, $cmid, $cm, $module, $pagevars) = question_edit_setup('categories');
19 // get values from form for actions on this page
20 $param = new stdClass();
23 $param->moveup = optional_param('moveup', 0, PARAM_INT);
24 $param->movedown = optional_param('movedown', 0, PARAM_INT);
25 $param->moveupcontext = optional_param('moveupcontext', 0, PARAM_INT);
26 $param->movedowncontext = optional_param('movedowncontext', 0, PARAM_INT);
27 $param->tocontext = optional_param('tocontext', 0, PARAM_INT);
28 $param->left = optional_param('left', 0, PARAM_INT);
29 $param->right = optional_param('right', 0, PARAM_INT);
30 $param->delete = optional_param('delete', 0, PARAM_INT);
31 $param->confirm = optional_param('confirm', 0, PARAM_INT);
32 $param->cancel = optional_param('cancel', '', PARAM_ALPHA);
33 $param->move = optional_param('move', 0, PARAM_INT);
34 $param->moveto = optional_param('moveto', 0, PARAM_INT);
35 $param->edit = optional_param('edit', 0, PARAM_INT);
37 $qcobject = new question_category_object($pagevars['cpage'], $thispageurl, $contexts->having_one_edit_tab_cap('categories'), $param->edit, $pagevars['cat'], $param->delete,
38 $contexts->having_cap('moodle/question:add'));
40 $streditingcategories = get_string('editcategories', 'quiz');
41 if ($param->left || $param->right || $param->moveup || $param->movedown|| $param->moveupcontext || $param->movedowncontext){
42 confirm_sesskey();
43 foreach ($qcobject->editlists as $list){
44 //processing of these actions is handled in the method where appropriate and page redirects.
45 $list->process_actions($param->left, $param->right, $param->moveup, $param->movedown,
46 $param->moveupcontext, $param->movedowncontext, $param->tocontext);
49 if ($param->delete && ($questionstomove = count_records("question", "category", $param->delete))){
50 if (!$category = get_record("question_categories", "id", $param->delete)) { // security
51 error("No such category {$param->delete}!", $thispageurl->out());
53 $categorycontext = get_context_instance_by_id($category->contextid);
54 $qcobject->moveform = new question_move_form($thispageurl,
55 array('contexts'=>array($categorycontext), 'currentcat'=>$param->delete));
56 if ($qcobject->moveform->is_cancelled()){
57 redirect($thispageurl->out());
58 } elseif ($formdata = $qcobject->moveform->get_data()) {
59 /// 'confirm' is the category to move existing questions to
60 $qcobject->move_questions_and_delete_category($formdata->delete, $formdata->category);
61 redirect($thispageurl->out());
63 } else {
64 $questionstomove = 0;
66 if ($qcobject->catform->is_cancelled()){
67 redirect($thispageurl->out());
68 }elseif ($catformdata = $qcobject->catform->get_data()) {
69 if (!$catformdata->id) {//new category
70 $qcobject->add_category($catformdata->parent, $catformdata->name, $catformdata->info);
71 } else {
72 $qcobject->update_category($catformdata->id, $catformdata->parent, $catformdata->name, $catformdata->info);
74 redirect($thispageurl->out());
75 } elseif ((!empty($param->delete) and (!$questionstomove) and confirm_sesskey())) {
76 $qcobject->delete_category($param->delete);//delete the category now no questions to move
78 $navlinks = array();
79 if ($cm!==null) {
80 // Page header
81 $strupdatemodule = has_capability('moodle/course:manageactivities', $contexts->lowest())
82 ? update_module_button($cm->id, $COURSE->id, get_string('modulename', $cm->modname))
83 : "";
84 $navlinks[] = array('name' => get_string('modulenameplural', $cm->modname),
85 'link' => "$CFG->wwwroot/mod/{$cm->modname}/index.php?id=$COURSE->id",
86 'type' => 'activity');
87 $navlinks[] = array('name' => format_string($module->name),
88 'link' => "$CFG->wwwroot/mod/{$cm->modname}/view.php?id={$cm->id}",
89 'type' => 'title');
90 } else {
91 // Print basic page layout.
92 $strupdatemodule = '';
95 if (!$param->edit){
96 $navlinks[] = array('name' => $streditingcategories, 'link' => '', 'type' => 'title');
97 } else {
98 $navlinks[] = array('name' => $streditingcategories, 'link' => $thispageurl->out(), 'type' => 'title');
99 $navlinks[] = array('name' => get_string('editingcategory', 'question'), 'link' => '', 'type' => 'title');
102 $navigation = build_navigation($navlinks);
103 print_header_simple($streditingcategories, '', $navigation, "", "", true, $strupdatemodule);
105 // print tabs
106 if ($cm!==null) {
107 $currenttab = 'edit';
108 $mode = 'categories';
109 ${$cm->modname} = $module;
110 include($CFG->dirroot."/mod/{$cm->modname}/tabs.php");
111 } else {
112 $currenttab = 'categories';
113 $context = $contexts->lowest();
114 include('tabs.php');
117 // display UI
118 if (!empty($param->edit)) {
119 $qcobject->edit_single_category($param->edit);
120 } else if ($questionstomove){
121 $qcobject->display_move_form($questionstomove, $category);
122 } else {
123 // display the user interface
124 $qcobject->display_user_interface();
126 print_footer($COURSE);