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 namespace core_question\bank;
21 * Functions used to show question editing interface
24 * @subpackage questionbank
25 * @copyright 1999 onwards Martin Dougiamas and others {@link http://moodle.com}
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 * This class prints a view of the question bank, including
32 * + Some controls to allow users to to select what is displayed.
33 * + A list of questions as a table.
34 * + Further controls to do things with the questions.
36 * This class gives a basic view, and provides plenty of hooks where subclasses
37 * can override parts of the display.
39 * The list of questions presented as a table is generated by creating a list of
40 * core_question\bank\column objects, one for each 'column' to be displayed. These
42 * + outputting the contents of that column, given a $question object, but also
43 * + generating the right fragments of SQL to ensure the necessary data is present,
44 * and sorted in the right order.
45 * + outputting table headers.
47 * @copyright 2009 Tim Hunt
48 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
54 protected $editquestionurl;
55 protected $quizorcourseid;
59 protected $visiblecolumns;
61 protected $requiredcolumns;
63 protected $lastchangedid;
67 /** @var array of \core_question\bank\search\condition objects. */
68 protected $searchconditions = array();
72 * @param question_edit_contexts $contexts
73 * @param moodle_url $pageurl
74 * @param object $course course settings
75 * @param object $cm (optional) activity settings.
77 public function __construct($contexts, $pageurl, $course, $cm = null) {
80 $this->contexts = $contexts;
81 $this->baseurl = $pageurl;
82 $this->course = $course;
85 if (!empty($cm) && $cm->modname == 'quiz') {
86 $this->quizorcourseid = '&quizid=' . $cm->instance;
88 $this->quizorcourseid = '&courseid=' .$this->course->id;
91 // Create the url of the new question page to forward to.
92 $returnurl = $pageurl->out_as_local_url(false);
93 $this->editquestionurl = new \moodle_url('/question/question.php',
94 array('returnurl' => $returnurl));
96 $this->editquestionurl->param('cmid', $cm->id);
98 $this->editquestionurl->param('courseid', $this->course->id);
101 $this->lastchangedid = optional_param('lastchanged', 0, PARAM_INT);
103 $this->init_columns($this->wanted_columns(), $this->heading_column());
105 $this->init_search_conditions($this->contexts, $this->course, $this->cm);
109 * Initialize search conditions from plugins
110 * local_*_get_question_bank_search_conditions() must return an array of
111 * \core_question\bank\search\condition objects.
113 protected function init_search_conditions() {
114 $searchplugins = get_plugin_list_with_function('local', 'get_question_bank_search_conditions');
115 foreach ($searchplugins as $component => $function) {
116 foreach ($function($this) as $searchobject) {
117 $this->add_searchcondition($searchobject);
122 protected function wanted_columns() {
125 if (empty($CFG->questionbankcolumns)) {
126 $questionbankcolumns = array('checkbox_column', 'question_type_column',
127 'question_name_column', 'edit_action_column', 'copy_action_column',
128 'preview_action_column', 'delete_action_column',
129 'creator_name_column',
130 'modifier_name_column');
132 $questionbankcolumns = explode(',', $CFG->questionbankcolumns);
134 if (question_get_display_preference('qbshowtext', 0, PARAM_BOOL, new \moodle_url(''))) {
135 $questionbankcolumns[] = 'question_text_row';
138 foreach ($questionbankcolumns as $fullname) {
139 if (! class_exists($fullname)) {
140 if (class_exists('core_question\\bank\\' . $fullname)) {
141 $fullname = 'core_question\\bank\\' . $fullname;
143 throw new \coding_exception("No such class exists: $fullname");
146 $this->requiredcolumns[$fullname] = new $fullname($this);
148 return $this->requiredcolumns;
153 * Get a column object from its name.
155 * @param string $columnname.
156 * @return \core_question\bank\column_base.
158 protected function get_column_type($columnname) {
159 if (! class_exists($columnname)) {
160 if (class_exists('core_question\\bank\\' . $columnname)) {
161 $columnname = 'core_question\\bank\\' . $columnname;
163 throw new \coding_exception("No such class exists: $columnname");
166 if (empty($this->requiredcolumns[$columnname])) {
167 $this->requiredcolumns[$columnname] = new $columnname($this);
169 return $this->requiredcolumns[$columnname];
173 * Specify the column heading
175 * @return string Column name for the heading
177 protected function heading_column() {
178 return 'question_bank_question_name_column';
182 * Initializing table columns
184 * @param array $wanted Collection of column names
185 * @param string $heading The name of column that is set as heading
187 protected function init_columns($wanted, $heading = '') {
188 $this->visiblecolumns = array();
189 $this->extrarows = array();
190 foreach ($wanted as $column) {
191 if ($column->is_extra_row()) {
192 $this->extrarows[get_class($column)] = $column;
194 $this->visiblecolumns[get_class($column)] = $column;
197 if (array_key_exists($heading, $this->requiredcolumns)) {
198 $this->requiredcolumns[$heading]->set_as_heading();
203 * @param string $colname a column internal name.
204 * @return bool is this column included in the output?
206 public function has_column($colname) {
207 return isset($this->visiblecolumns[$colname]);
211 * @return int The number of columns in the table.
213 public function get_column_count() {
214 return count($this->visiblecolumns);
217 public function get_courseid() {
218 return $this->course->id;
221 protected function init_sort() {
222 $this->init_sort_from_params();
223 if (empty($this->sort)) {
224 $this->sort = $this->default_sort();
229 * Deal with a sort name of the form columnname, or colname_subsort by
230 * breaking it up, validating the bits that are presend, and returning them.
231 * If there is no subsort, then $subsort is returned as ''.
232 * @return array array($colname, $subsort).
234 protected function parse_subsort($sort) {
236 if (strpos($sort, '-') !== false) {
237 list($colname, $subsort) = explode('-', $sort, 2);
242 // Validate the column name.
243 $column = $this->get_column_type($colname);
244 if (!isset($column) || !$column->is_sortable()) {
245 for ($i = 1; $i <= self::MAX_SORTS; $i++) {
246 $this->baseurl->remove_params('qbs' . $i);
248 throw new \moodle_exception('unknownsortcolumn', '', $link = $this->baseurl->out(), $colname);
250 // Validate the subsort, if present.
252 $subsorts = $column->is_sortable();
253 if (!is_array($subsorts) || !isset($subsorts[$subsort])) {
254 throw new \moodle_exception('unknownsortcolumn', '', $link = $this->baseurl->out(), $sort);
257 return array($colname, $subsort);
260 protected function init_sort_from_params() {
261 $this->sort = array();
262 for ($i = 1; $i <= self::MAX_SORTS; $i++) {
263 if (!$sort = optional_param('qbs' . $i, '', PARAM_TEXT)) {
266 // Work out the appropriate order.
268 if ($sort[0] == '-') {
270 $sort = substr($sort, 1);
275 // Deal with subsorts.
276 list($colname, $subsort) = $this->parse_subsort($sort);
277 $this->requiredcolumns[$colname] = $this->get_column_type($colname);
278 $this->sort[$sort] = $order;
282 protected function sort_to_params($sorts) {
285 foreach ($sorts as $sort => $order) {
290 $params['qbs' . $i] = $sort;
295 protected function default_sort() {
296 return array('core_question\bank\question_type_column' => 1, 'core_question\bank\question_name_column' => 1);
300 * @param $sort a column or column_subsort name.
301 * @return int the current sort order for this column -1, 0, 1
303 public function get_primary_sort_order($sort) {
304 $order = reset($this->sort);
305 $primarysort = key($this->sort);
306 if ($sort == $primarysort) {
314 * Get a URL to redisplay the page with a new sort for the question bank.
315 * @param string $sort the column, or column_subsort to sort on.
316 * @param bool $newsortreverse whether to sort in reverse order.
317 * @return string The new URL.
319 public function new_sort_url($sort, $newsortreverse) {
320 if ($newsortreverse) {
325 // Tricky code to add the new sort at the start, removing it from where it was before, if it was present.
326 $newsort = array_reverse($this->sort);
327 if (isset($newsort[$sort])) {
328 unset($newsort[$sort]);
330 $newsort[$sort] = $order;
331 $newsort = array_reverse($newsort);
332 if (count($newsort) > self::MAX_SORTS) {
333 $newsort = array_slice($newsort, 0, self::MAX_SORTS, true);
335 return $this->baseurl->out(true, $this->sort_to_params($newsort));
339 * Create the SQL query to retrieve the indicated questions
340 * @param stdClass $category no longer used.
341 * @param bool $recurse no longer used.
342 * @param bool $showhidden no longer used.
343 * @deprecated since Moodle 2.7 MDL-40313.
345 * @see \core_question\bank\search\condition
346 * @todo MDL-41978 This will be deleted in Moodle 2.8
348 protected function build_query_sql($category, $recurse, $showhidden) {
349 debugging('build_query_sql() is deprecated, please use \core_question\bank\view::build_query() and ' .
350 '\core_question\bank\search\condition classes instead.', DEBUG_DEVELOPER);
355 * Create the SQL query to retrieve the indicated questions, based on
356 * \core_question\bank\search\condition filters.
358 protected function build_query() {
361 // Get the required tables and fields.
363 $fields = array('q.hidden', 'q.category');
364 foreach ($this->requiredcolumns as $column) {
365 $extrajoins = $column->get_extra_joins();
366 foreach ($extrajoins as $prefix => $join) {
367 if (isset($joins[$prefix]) && $joins[$prefix] != $join) {
368 throw new \coding_exception('Join ' . $join . ' conflicts with previous join ' . $joins[$prefix]);
370 $joins[$prefix] = $join;
372 $fields = array_merge($fields, $column->get_required_fields());
374 $fields = array_unique($fields);
376 // Build the order by clause.
378 foreach ($this->sort as $sort => $order) {
379 list($colname, $subsort) = $this->parse_subsort($sort);
380 $sorts[] = $this->requiredcolumns[$colname]->sort_expression($order < 0, $subsort);
383 // Build the where clause.
384 $tests = array('q.parent = 0');
385 $this->sqlparams = array();
386 foreach ($this->searchconditions as $searchcondition) {
387 if ($searchcondition->where()) {
388 $tests[] = '((' . $searchcondition->where() .'))';
390 if ($searchcondition->params()) {
391 $this->sqlparams = array_merge($this->sqlparams, $searchcondition->params());
395 $sql = ' FROM {question} q ' . implode(' ', $joins);
396 $sql .= ' WHERE ' . implode(' AND ', $tests);
397 $this->countsql = 'SELECT count(1)' . $sql;
398 $this->loadsql = 'SELECT ' . implode(', ', $fields) . $sql . ' ORDER BY ' . implode(', ', $sorts);
401 protected function get_question_count() {
403 return $DB->count_records_sql($this->countsql, $this->sqlparams);
406 protected function load_page_questions($page, $perpage) {
408 $questions = $DB->get_recordset_sql($this->loadsql, $this->sqlparams, $page * $perpage, $perpage);
409 if (!$questions->valid()) {
410 // No questions on this page. Reset to page 0.
411 $questions = $DB->get_recordset_sql($this->loadsql, $this->sqlparams, 0, $perpage);
416 public function base_url() {
417 return $this->baseurl;
420 public function edit_question_url($questionid) {
421 return $this->editquestionurl->out(true, array('id' => $questionid));
425 * Get the URL for duplicating a given question.
426 * @param int $questionid the question id.
427 * @return moodle_url the URL.
429 public function copy_question_url($questionid) {
430 return $this->editquestionurl->out(true, array('id' => $questionid, 'makecopy' => 1));
434 * Get the context we are displaying the question bank for.
435 * @return context context object.
437 public function get_most_specific_context() {
438 return $this->contexts->lowest();
442 * Get the URL to preview a question.
443 * @param stdClass $questiondata the data defining the question.
444 * @return moodle_url the URL.
446 public function preview_question_url($questiondata) {
447 return question_preview_url($questiondata->id, null, null, null, null,
448 $this->get_most_specific_context());
452 * Shows the question bank editing interface.
454 * The function also processes a number of actions:
456 * Actions affecting the question pool:
457 * move Moves a question to a different category
458 * deleteselected Deletes the selected questions from the category
460 * category Chooses the category
461 * displayoptions Sets display options
463 public function display($tabname, $page, $perpage, $cat,
464 $recurse, $showhidden, $showquestiontext) {
465 global $PAGE, $OUTPUT;
467 if ($this->process_actions_needing_ui()) {
470 $editcontexts = $this->contexts->having_one_edit_tab_cap($tabname);
471 // Category selection form.
472 echo $OUTPUT->heading(get_string('questionbank', 'question'), 2);
473 array_unshift($this->searchconditions, new \core_question\bank\search\hidden_condition(!$showhidden));
474 array_unshift($this->searchconditions, new \core_question\bank\search\category_condition(
475 $cat, $recurse, $editcontexts, $this->baseurl, $this->course));
476 $this->display_options_form($showquestiontext);
478 // Continues with list of questions.
479 $this->display_question_list($this->contexts->having_one_edit_tab_cap($tabname),
480 $this->baseurl, $cat, $this->cm,
481 null, $page, $perpage, $showhidden, $showquestiontext,
482 $this->contexts->having_cap('moodle/question:add'));
485 protected function print_choose_category_message($categoryandcontext) {
486 echo "<p style=\"text-align:center;\"><b>";
487 print_string('selectcategoryabove', 'question');
491 protected function get_current_category($categoryandcontext) {
493 list($categoryid, $contextid) = explode(',', $categoryandcontext);
495 $this->print_choose_category_message($categoryandcontext);
499 if (!$category = $DB->get_record('question_categories',
500 array('id' => $categoryid, 'contextid' => $contextid))) {
501 echo $OUTPUT->box_start('generalbox questionbank');
502 echo $OUTPUT->notification('Category not found!');
503 echo $OUTPUT->box_end();
511 * prints category information
512 * @param stdClass $category the category row from the database.
513 * @deprecated since Moodle 2.7 MDL-40313.
514 * @see \core_question\bank\search\condition
515 * @todo MDL-41978 This will be deleted in Moodle 2.8
517 protected function print_category_info($category) {
518 $formatoptions = new \stdClass();
519 $formatoptions->noclean = true;
520 $formatoptions->overflowdiv = true;
521 echo '<div class="boxaligncenter">';
522 echo format_text($category->info, $category->infoformat, $formatoptions, $this->course->id);
527 * Prints a form to choose categories
528 * @deprecated since Moodle 2.7 MDL-40313.
529 * @see \core_question\bank\search\condition
530 * @todo MDL-41978 This will be deleted in Moodle 2.8
532 protected function display_category_form($contexts, $pageurl, $current) {
535 debugging('display_category_form() is deprecated, please use ' .
536 '\core_question\bank\search\condition instead.', DEBUG_DEVELOPER);
537 // Get all the existing categories now.
538 echo '<div class="choosecategory">';
539 $catmenu = question_category_options($contexts, false, 0, true);
541 $select = new \single_select($this->baseurl, 'category', $catmenu, $current, null, 'catmenu');
542 $select->set_label(get_string('selectacategory', 'question'));
543 echo $OUTPUT->render($select);
548 * Display the options form.
549 * @param bool $recurse no longer used.
550 * @param bool $showhidden no longer used.
551 * @param bool $showquestiontext whether to show the question text.
552 * @deprecated since Moodle 2.7 MDL-40313.
553 * @see display_options_form
554 * @todo MDL-41978 This will be deleted in Moodle 2.8
555 * @see \core_question\bank\search\condition
557 protected function display_options($recurse, $showhidden, $showquestiontext) {
558 debugging('display_options() is deprecated, please use display_options_form instead.', DEBUG_DEVELOPER);
559 return $this->display_options_form($showquestiontext);
563 * Print a single option checkbox.
564 * @deprecated since Moodle 2.7 MDL-40313.
565 * @see \core_question\bank\search\condition
566 * @see html_writer::checkbox
567 * @todo MDL-41978 This will be deleted in Moodle 2.8
569 protected function display_category_form_checkbox($name, $value, $label) {
570 debugging('display_category_form_checkbox() is deprecated, ' .
571 'please use \core_question\bank\search\condition instead.', DEBUG_DEVELOPER);
572 echo '<div><input type="hidden" id="' . $name . '_off" name="' . $name . '" value="0" />';
573 echo '<input type="checkbox" id="' . $name . '_on" name="' . $name . '" value="1"';
575 echo ' checked="checked"';
577 echo ' onchange="getElementById(\'displayoptions\').submit(); return true;" />';
578 echo '<label for="' . $name . '_on">' . $label . '</label>';
583 * Display the form with options for which questions are displayed and how they are displayed.
584 * @param bool $showquestiontext Display the text of the question within the list.
586 protected function display_options_form($showquestiontext) {
589 echo '<form method="get" action="edit.php" id="displayoptions">';
590 echo "<fieldset class='invisiblefieldset'>";
591 echo \html_writer::input_hidden_params($this->baseurl, array('recurse', 'showhidden', 'qbshowtext'));
593 foreach ($this->searchconditions as $searchcondition) {
594 echo $searchcondition->display_options($this);
596 $this->display_showtext_checkbox($showquestiontext);
597 $this->display_advanced_search_form();
598 $PAGE->requires->yui_module('moodle-question-searchform', 'M.question.searchform.init');
599 echo '<noscript><div class="centerpara"><input type="submit" value="'. get_string('go') .'" />';
600 echo '</div></noscript></fieldset></form>';
604 * Print the "advanced" UI elements for the form to select which questions. Hidden by default.
606 protected function display_advanced_search_form() {
607 print_collapsible_region_start('', 'advancedsearch', get_string('advancedsearchoptions', 'question'),
608 'question_bank_advanced_search');
609 foreach ($this->searchconditions as $searchcondition) {
610 echo $searchcondition->display_options_adv($this);
612 print_collapsible_region_end();
616 * Display the checkbox UI for toggling the display of the question text in the list.
617 * @param bool $showquestiontext the current or default value for whether to display the text.
619 protected function display_showtext_checkbox($showquestiontext) {
621 echo \html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'qbshowtext',
622 'value' => 0, 'id' => 'qbshowtext_off'));
623 echo \html_writer::checkbox('qbshowtext', '1', $showquestiontext, get_string('showquestiontext', 'question'),
624 array('id' => 'qbshowtext_on', 'class' => 'searchoptions'));
628 protected function create_new_question_form($category, $canadd) {
630 echo '<div class="createnewquestion">';
632 create_new_question_button($category->id, $this->editquestionurl->params(),
633 get_string('createnewquestion', 'question'));
635 print_string('nopermissionadd', 'question');
641 * Prints the table of questions in a category with interactions
643 * @param array $contexts Not used!
644 * @param moodle_url $pageurl The URL to reload this page.
645 * @param string $categoryandcontext 'categoryID,contextID'.
646 * @param stdClass $cm Not used!
647 * @param bool $recurse Whether to include subcategories.
648 * @param int $page The number of the page to be displayed
649 * @param int $perpage Number of questions to show per page
650 * @param bool $showhidden whether deleted questions should be displayed.
651 * @param bool $showquestiontext whether the text of each question should be shown in the list. Deprecated.
652 * @param array $addcontexts contexts where the user is allowed to add new questions.
654 protected function display_question_list($contexts, $pageurl, $categoryandcontext,
655 $cm = null, $recurse=1, $page=0, $perpage=100, $showhidden=false,
656 $showquestiontext = false, $addcontexts = array()) {
657 global $CFG, $DB, $OUTPUT;
659 $category = $this->get_current_category($categoryandcontext);
661 $cmoptions = new \stdClass();
662 $cmoptions->hasattempts = !empty($this->quizhasattempts);
664 $strselectall = get_string('selectall');
665 $strselectnone = get_string('deselectall');
666 $strdelete = get_string('delete');
668 list($categoryid, $contextid) = explode(',', $categoryandcontext);
669 $catcontext = \context::instance_by_id($contextid);
671 $canadd = has_capability('moodle/question:add', $catcontext);
672 $caneditall = has_capability('moodle/question:editall', $catcontext);
673 $canuseall = has_capability('moodle/question:useall', $catcontext);
674 $canmoveall = has_capability('moodle/question:moveall', $catcontext);
676 $this->create_new_question_form($category, $canadd);
678 $this->build_query();
679 $totalnumber = $this->get_question_count();
680 if ($totalnumber == 0) {
683 $questions = $this->load_page_questions($page, $perpage);
685 echo '<div class="categorypagingbarcontainer">';
686 $pageingurl = new \moodle_url('edit.php');
687 $r = $pageingurl->params($pageurl->params());
688 $pagingbar = new \paging_bar($totalnumber, $page, $perpage, $pageingurl);
689 $pagingbar->pagevar = 'qpage';
690 echo $OUTPUT->render($pagingbar);
693 echo '<form method="post" action="edit.php">';
694 echo '<fieldset class="invisiblefieldset" style="display: block;">';
695 echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
696 echo \html_writer::input_hidden_params($this->baseurl);
698 echo '<div class="categoryquestionscontainer">';
699 $this->start_table();
701 foreach ($questions as $question) {
702 $this->print_table_row($question, $rowcount);
708 echo '<div class="categorypagingbarcontainer pagingbottom">';
709 echo $OUTPUT->render($pagingbar);
710 if ($totalnumber > DEFAULT_QUESTIONS_PER_PAGE) {
711 if ($perpage == DEFAULT_QUESTIONS_PER_PAGE) {
712 $url = new \moodle_url('edit.php', array_merge($pageurl->params(), array('qperpage' => 1000)));
713 $showall = '<a href="'.$url.'">'.get_string('showall', 'moodle', $totalnumber).'</a>';
715 $url = new \moodle_url('edit.php', array_merge($pageurl->params(),
716 array('qperpage' => DEFAULT_QUESTIONS_PER_PAGE)));
717 $showall = '<a href="'.$url.'">'.get_string('showperpage', 'moodle', DEFAULT_QUESTIONS_PER_PAGE).'</a>';
719 echo "<div class='paging'>$showall</div>";
723 echo '<div class="modulespecificbuttonscontainer">';
724 if ($caneditall || $canmoveall || $canuseall) {
725 echo '<strong> '.get_string('withselected', 'question').':</strong><br />';
727 if (function_exists('module_specific_buttons')) {
728 echo module_specific_buttons($this->cm->id, $cmoptions);
731 // Print delete and move selected question.
733 echo '<input type="submit" name="deleteselected" value="' . $strdelete . "\" />\n";
736 if ($canmoveall && count($addcontexts)) {
737 echo '<input type="submit" name="move" value="'.get_string('moveto', 'question')."\" />\n";
738 question_category_select_menu($addcontexts, false, 0, "$category->id,$category->contextid");
741 if (function_exists('module_specific_controls') && $canuseall) {
742 $modulespecific = module_specific_controls($totalnumber, $recurse, $category, $this->cm->id, $cmoptions);
743 if (!empty($modulespecific)) {
744 echo "<hr />$modulespecific";
754 protected function start_table() {
755 echo '<table id="categoryquestions">' . "\n";
757 $this->print_table_headers();
762 protected function end_table() {
767 protected function print_table_headers() {
769 foreach ($this->visiblecolumns as $column) {
770 $column->display_header();
775 protected function get_row_classes($question, $rowcount) {
777 if ($question->hidden) {
778 $classes[] = 'dimmed_text';
780 if ($question->id == $this->lastchangedid) {
781 $classes[] = 'highlight';
783 $classes[] = 'r' . ($rowcount % 2);
787 protected function print_table_row($question, $rowcount) {
788 $rowclasses = implode(' ', $this->get_row_classes($question, $rowcount));
790 echo '<tr class="' . $rowclasses . '">' . "\n";
794 foreach ($this->visiblecolumns as $column) {
795 $column->display($question, $rowclasses);
798 foreach ($this->extrarows as $row) {
799 $row->display($question, $rowclasses);
803 public function process_actions() {
805 // Now, check for commands on this page and modify variables as necessary.
806 if (optional_param('move', false, PARAM_BOOL) and confirm_sesskey()) {
807 // Move selected questions to new category.
808 $category = required_param('category', PARAM_SEQUENCE);
809 list($tocategoryid, $contextid) = explode(',', $category);
810 if (! $tocategory = $DB->get_record('question_categories', array('id' => $tocategoryid, 'contextid' => $contextid))) {
811 print_error('cannotfindcate', 'question');
813 $tocontext = \context::instance_by_id($contextid);
814 require_capability('moodle/question:add', $tocontext);
815 $rawdata = (array) data_submitted();
816 $questionids = array();
817 foreach ($rawdata as $key => $value) { // Parse input for question ids.
818 if (preg_match('!^q([0-9]+)$!', $key, $matches)) {
820 $questionids[] = $key;
824 list($usql, $params) = $DB->get_in_or_equal($questionids);
826 $questions = $DB->get_records_sql("
827 SELECT q.*, c.contextid
829 JOIN {question_categories} c ON c.id = q.category
830 WHERE q.id $usql", $params);
831 foreach ($questions as $question) {
832 question_require_capability_on($question, 'move');
834 question_move_questions_to_category($questionids, $tocategory->id);
835 redirect($this->baseurl->out(false,
836 array('category' => "$tocategoryid,$contextid")));
840 if (optional_param('deleteselected', false, PARAM_BOOL)) { // Delete selected questions from the category.
841 // If teacher has already confirmed the action.
842 if (($confirm = optional_param('confirm', '', PARAM_ALPHANUM)) and confirm_sesskey()) {
843 $deleteselected = required_param('deleteselected', PARAM_RAW);
844 if ($confirm == md5($deleteselected)) {
845 if ($questionlist = explode(',', $deleteselected)) {
846 // For each question either hide it if it is in use or delete it.
847 foreach ($questionlist as $questionid) {
848 $questionid = (int)$questionid;
849 question_require_capability_on($questionid, 'edit');
850 if (questions_in_use(array($questionid))) {
851 $DB->set_field('question', 'hidden', 1, array('id' => $questionid));
853 question_delete_question($questionid);
857 redirect($this->baseurl);
859 print_error('invalidconfirm', 'question');
864 // Unhide a question.
865 if (($unhide = optional_param('unhide', '', PARAM_INT)) and confirm_sesskey()) {
866 question_require_capability_on($unhide, 'edit');
867 $DB->set_field('question', 'hidden', 0, array('id' => $unhide));
869 // Purge these questions from the cache.
870 \core_question_bank::notify_question_edited($unhide);
872 redirect($this->baseurl);
876 public function process_actions_needing_ui() {
878 if (optional_param('deleteselected', false, PARAM_BOOL)) {
879 // Make a list of all the questions that are selected.
880 $rawquestions = $_REQUEST; // This code is called by both POST forms and GET links, so cannot use data_submitted.
881 $questionlist = ''; // comma separated list of ids of questions to be deleted
882 $questionnames = ''; // string with names of questions separated by <br /> with
883 // an asterix in front of those that are in use
884 $inuse = false; // set to true if at least one of the questions is in use
885 foreach ($rawquestions as $key => $value) { // Parse input for question ids.
886 if (preg_match('!^q([0-9]+)$!', $key, $matches)) {
888 $questionlist .= $key.',';
889 question_require_capability_on($key, 'edit');
890 if (questions_in_use(array($key))) {
891 $questionnames .= '* ';
894 $questionnames .= $DB->get_field('question', 'name', array('id' => $key)) . '<br />';
897 if (!$questionlist) { // No questions were selected.
898 redirect($this->baseurl);
900 $questionlist = rtrim($questionlist, ',');
902 // Add an explanation about questions in use.
904 $questionnames .= '<br />'.get_string('questionsinuse', 'question');
906 $baseurl = new \moodle_url('edit.php', $this->baseurl->params());
907 $deleteurl = new \moodle_url($baseurl, array('deleteselected' => $questionlist, 'confirm' => md5($questionlist),
908 'sesskey' => sesskey()));
910 echo $OUTPUT->confirm(get_string('deletequestionscheck', 'question', $questionnames), $deleteurl, $baseurl);
917 * Add another search control to this view.
918 * @param \core_question\bank\search\condition $searchcondition the condition to add.
920 public function add_searchcondition($searchcondition) {
921 $this->searchconditions[] = $searchcondition;