022be821f13dfe8ef8fb157a9b087238844eff27
[moodle.git] / question / classes / bank / view.php
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.
13 //
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;
20 /**
21  * Functions used to show question editing interface
22  *
23  * @package    moodlecore
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
27  */
30 /**
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.
35  *
36  * This class gives a basic view, and provides plenty of hooks where subclasses
37  * can override parts of the display.
38  *
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
41  * manage
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.
46  *
47  * @copyright  2009 Tim Hunt
48  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
49  */
50 class view {
51     const MAX_SORTS = 3;
53     protected $baseurl;
54     protected $editquestionurl;
55     protected $quizorcourseid;
56     protected $contexts;
57     protected $cm;
58     protected $course;
59     protected $visiblecolumns;
60     protected $extrarows;
61     protected $requiredcolumns;
62     protected $sort;
63     protected $lastchangedid;
64     protected $countsql;
65     protected $loadsql;
66     protected $sqlparams;
67     /** @var array of \core_question\bank\search\condition objects. */
68     protected $searchconditions = array();
70     /**
71      * Constructor
72      * @param question_edit_contexts $contexts
73      * @param moodle_url $pageurl
74      * @param object $course course settings
75      * @param object $cm (optional) activity settings.
76      */
77     public function __construct($contexts, $pageurl, $course, $cm = null) {
78         global $CFG, $PAGE;
80         $this->contexts = $contexts;
81         $this->baseurl = $pageurl;
82         $this->course = $course;
83         $this->cm = $cm;
85         if (!empty($cm) && $cm->modname == 'quiz') {
86             $this->quizorcourseid = '&amp;quizid=' . $cm->instance;
87         } else {
88             $this->quizorcourseid = '&amp;courseid=' .$this->course->id;
89         }
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));
95         if ($cm !== null) {
96             $this->editquestionurl->param('cmid', $cm->id);
97         } else {
98             $this->editquestionurl->param('courseid', $this->course->id);
99         }
101         $this->lastchangedid = optional_param('lastchanged', 0, PARAM_INT);
103         $this->init_columns($this->wanted_columns(), $this->heading_column());
104         $this->init_sort();
105         $this->init_search_conditions($this->contexts, $this->course, $this->cm);
106     }
108     /**
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.
112      */
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);
118             }
119         }
120     }
122     protected function wanted_columns() {
123         global $CFG;
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');
131         } else {
132              $questionbankcolumns = explode(',', $CFG->questionbankcolumns);
133         }
134         if (question_get_display_preference('qbshowtext', 0, PARAM_BOOL, new \moodle_url(''))) {
135             $questionbankcolumns[] = 'question_text_row';
136         }
138         foreach ($questionbankcolumns as $fullname) {
139             if (! class_exists($fullname)) {
140                 if (class_exists('core_question\\bank\\' . $fullname)) {
141                     $fullname = 'core_question\\bank\\' . $fullname;
142                 } else {
143                     throw new \coding_exception("No such class exists: $fullname");
144                 }
145             }
146             $this->requiredcolumns[$fullname] = new $fullname($this);
147         }
148         return $this->requiredcolumns;
149     }
152     /**
153      * Get a column object from its name.
154      *
155      * @param string $columnname.
156      * @return \core_question\bank\column_base.
157      */
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;
162             } else {
163                 throw new \coding_exception("No such class exists: $columnname");
164             }
165         }
166         if (empty($this->requiredcolumns[$columnname])) {
167             $this->requiredcolumns[$columnname] = new $columnname($this);
168         }
169         return $this->requiredcolumns[$columnname];
170     }
172     /**
173      * Specify the column heading
174      *
175      * @return string Column name for the heading
176      */
177     protected function heading_column() {
178         return 'question_bank_question_name_column';
179     }
181     /**
182      * Initializing table columns
183      *
184      * @param array $wanted Collection of column names
185      * @param string $heading The name of column that is set as heading
186      */
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;
193             } else {
194                 $this->visiblecolumns[get_class($column)] = $column;
195             }
196         }
197         if (array_key_exists($heading, $this->requiredcolumns)) {
198             $this->requiredcolumns[$heading]->set_as_heading();
199         }
200     }
202     /**
203      * @param string $colname a column internal name.
204      * @return bool is this column included in the output?
205      */
206     public function has_column($colname) {
207         return isset($this->visiblecolumns[$colname]);
208     }
210     /**
211      * @return int The number of columns in the table.
212      */
213     public function get_column_count() {
214         return count($this->visiblecolumns);
215     }
217     public function get_courseid() {
218         return $this->course->id;
219     }
221     protected function init_sort() {
222         $this->init_sort_from_params();
223         if (empty($this->sort)) {
224             $this->sort = $this->default_sort();
225         }
226     }
228     /**
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).
233      */
234     protected function parse_subsort($sort) {
235         // Do the parsing.
236         if (strpos($sort, '-') !== false) {
237             list($colname, $subsort) = explode('-', $sort, 2);
238         } else {
239             $colname = $sort;
240             $subsort = '';
241         }
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);
247             }
248             throw new \moodle_exception('unknownsortcolumn', '', $link = $this->baseurl->out(), $colname);
249         }
250         // Validate the subsort, if present.
251         if ($subsort) {
252             $subsorts = $column->is_sortable();
253             if (!is_array($subsorts) || !isset($subsorts[$subsort])) {
254                 throw new \moodle_exception('unknownsortcolumn', '', $link = $this->baseurl->out(), $sort);
255             }
256         }
257         return array($colname, $subsort);
258     }
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)) {
264                 break;
265             }
266             // Work out the appropriate order.
267             $order = 1;
268             if ($sort[0] == '-') {
269                 $order = -1;
270                 $sort = substr($sort, 1);
271                 if (!$sort) {
272                     break;
273                 }
274             }
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;
279         }
280     }
282     protected function sort_to_params($sorts) {
283         $params = array();
284         $i = 0;
285         foreach ($sorts as $sort => $order) {
286             $i += 1;
287             if ($order < 0) {
288                 $sort = '-' . $sort;
289             }
290             $params['qbs' . $i] = $sort;
291         }
292         return $params;
293     }
295     protected function default_sort() {
296         return array('core_question\bank\question_type_column' => 1, 'core_question\bank\question_name_column' => 1);
297     }
299     /**
300      * @param $sort a column or column_subsort name.
301      * @return int the current sort order for this column -1, 0, 1
302      */
303     public function get_primary_sort_order($sort) {
304         $order = reset($this->sort);
305         $primarysort = key($this->sort);
306         if ($sort == $primarysort) {
307             return $order;
308         } else {
309             return 0;
310         }
311     }
313     /**
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.
318      */
319     public function new_sort_url($sort, $newsortreverse) {
320         if ($newsortreverse) {
321             $order = -1;
322         } else {
323             $order = 1;
324         }
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]);
329         }
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);
334         }
335         return $this->baseurl->out(true, $this->sort_to_params($newsort));
336     }
338     /**
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.
344      * @see build_query()
345      * @see \core_question\bank\search\condition
346      * @todo MDL-41978 This will be deleted in Moodle 2.8
347      */
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);
351         self::build_query();
352     }
354     /**
355      * Create the SQL query to retrieve the indicated questions, based on
356      * \core_question\bank\search\condition filters.
357      */
358     protected function build_query() {
359         global $DB;
361         // Get the required tables and fields.
362         $joins = array();
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]);
369                 }
370                 $joins[$prefix] = $join;
371             }
372             $fields = array_merge($fields, $column->get_required_fields());
373         }
374         $fields = array_unique($fields);
376         // Build the order by clause.
377         $sorts = array();
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);
381         }
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() .'))';
389             }
390             if ($searchcondition->params()) {
391                 $this->sqlparams = array_merge($this->sqlparams, $searchcondition->params());
392             }
393         }
394         // Build the SQL.
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);
399     }
401     protected function get_question_count() {
402         global $DB;
403         return $DB->count_records_sql($this->countsql, $this->sqlparams);
404     }
406     protected function load_page_questions($page, $perpage) {
407         global $DB;
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);
412         }
413         return $questions;
414     }
416     public function base_url() {
417         return $this->baseurl;
418     }
420     public function edit_question_url($questionid) {
421         return $this->editquestionurl->out(true, array('id' => $questionid));
422     }
424     /**
425      * Get the URL for duplicating a given question.
426      * @param int $questionid the question id.
427      * @return moodle_url the URL.
428      */
429     public function copy_question_url($questionid) {
430         return $this->editquestionurl->out(true, array('id' => $questionid, 'makecopy' => 1));
431     }
433     /**
434      * Get the context we are displaying the question bank for.
435      * @return context context object.
436      */
437     public function get_most_specific_context() {
438         return $this->contexts->lowest();
439     }
441     /**
442      * Get the URL to preview a question.
443      * @param stdClass $questiondata the data defining the question.
444      * @return moodle_url the URL.
445      */
446     public function preview_question_url($questiondata) {
447         return question_preview_url($questiondata->id, null, null, null, null,
448                 $this->get_most_specific_context());
449     }
451     /**
452      * Shows the question bank editing interface.
453      *
454      * The function also processes a number of actions:
455      *
456      * Actions affecting the question pool:
457      * move           Moves a question to a different category
458      * deleteselected Deletes the selected questions from the category
459      * Other actions:
460      * category      Chooses the category
461      * displayoptions Sets display options
462      */
463     public function display($tabname, $page, $perpage, $cat,
464             $recurse, $showhidden, $showquestiontext) {
465         global $PAGE, $OUTPUT;
467         if ($this->process_actions_needing_ui()) {
468             return;
469         }
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'));
483     }
485     protected function print_choose_category_message($categoryandcontext) {
486         echo "<p style=\"text-align:center;\"><b>";
487         print_string('selectcategoryabove', 'question');
488         echo "</b></p>";
489     }
491     protected function get_current_category($categoryandcontext) {
492         global $DB, $OUTPUT;
493         list($categoryid, $contextid) = explode(',', $categoryandcontext);
494         if (!$categoryid) {
495             $this->print_choose_category_message($categoryandcontext);
496             return false;
497         }
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();
504             return false;
505         }
507         return $category;
508     }
510     /**
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
516      */
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);
523         echo "</div>\n";
524     }
526     /**
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
531      */
532     protected function display_category_form($contexts, $pageurl, $current) {
533         global $OUTPUT;
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);
544         echo "</div>\n";
545     }
547     /**
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
556      */
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);
560     }
562     /**
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
568      */
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"';
574         if ($value) {
575             echo ' checked="checked"';
576         }
577         echo ' onchange="getElementById(\'displayoptions\').submit(); return true;" />';
578         echo '<label for="' . $name . '_on">' . $label . '</label>';
579         echo "</div>\n";
580     }
582     /**
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.
585      */
586     protected function display_options_form($showquestiontext) {
587         global $PAGE;
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);
595         }
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>';
601     }
603     /**
604      * Print the "advanced" UI elements for the form to select which questions. Hidden by default.
605      */
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);
611         }
612         print_collapsible_region_end();
613     }
615     /**
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.
618      */
619     protected function display_showtext_checkbox($showquestiontext) {
620         echo '<div>';
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'));
625         echo "</div>\n";
626     }
628     protected function create_new_question_form($category, $canadd) {
629         global $CFG;
630         echo '<div class="createnewquestion">';
631         if ($canadd) {
632             create_new_question_button($category->id, $this->editquestionurl->params(),
633                     get_string('createnewquestion', 'question'));
634         } else {
635             print_string('nopermissionadd', 'question');
636         }
637         echo '</div>';
638     }
640     /**
641      * Prints the table of questions in a category with interactions
642      *
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.
653      */
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) {
681             return;
682         }
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);
691         echo '</div>';
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();
700         $rowcount = 0;
701         foreach ($questions as $question) {
702             $this->print_table_row($question, $rowcount);
703             $rowcount += 1;
704         }
705         $this->end_table();
706         echo "</div>\n";
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>';
714             } else {
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>';
718             }
719             echo "<div class='paging'>$showall</div>";
720         }
721         echo '</div>';
723         echo '<div class="modulespecificbuttonscontainer">';
724         if ($caneditall || $canmoveall || $canuseall) {
725             echo '<strong>&nbsp;'.get_string('withselected', 'question').':</strong><br />';
727             if (function_exists('module_specific_buttons')) {
728                 echo module_specific_buttons($this->cm->id, $cmoptions);
729             }
731             // Print delete and move selected question.
732             if ($caneditall) {
733                 echo '<input type="submit" name="deleteselected" value="' . $strdelete . "\" />\n";
734             }
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");
739             }
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";
745                 }
746             }
747         }
748         echo "</div>\n";
750         echo '</fieldset>';
751         echo "</form>\n";
752     }
754     protected function start_table() {
755         echo '<table id="categoryquestions">' . "\n";
756         echo "<thead>\n";
757         $this->print_table_headers();
758         echo "</thead>\n";
759         echo "<tbody>\n";
760     }
762     protected function end_table() {
763         echo "</tbody>\n";
764         echo "</table>\n";
765     }
767     protected function print_table_headers() {
768         echo "<tr>\n";
769         foreach ($this->visiblecolumns as $column) {
770             $column->display_header();
771         }
772         echo "</tr>\n";
773     }
775     protected function get_row_classes($question, $rowcount) {
776         $classes = array();
777         if ($question->hidden) {
778             $classes[] = 'dimmed_text';
779         }
780         if ($question->id == $this->lastchangedid) {
781             $classes[] = 'highlight';
782         }
783         $classes[] = 'r' . ($rowcount % 2);
784         return $classes;
785     }
787     protected function print_table_row($question, $rowcount) {
788         $rowclasses = implode(' ', $this->get_row_classes($question, $rowcount));
789         if ($rowclasses) {
790             echo '<tr class="' . $rowclasses . '">' . "\n";
791         } else {
792             echo "<tr>\n";
793         }
794         foreach ($this->visiblecolumns as $column) {
795             $column->display($question, $rowclasses);
796         }
797         echo "</tr>\n";
798         foreach ($this->extrarows as $row) {
799             $row->display($question, $rowclasses);
800         }
801     }
803     public function process_actions() {
804         global $CFG, $DB;
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');
812             }
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)) {
819                     $key = $matches[1];
820                     $questionids[] = $key;
821                 }
822             }
823             if ($questionids) {
824                 list($usql, $params) = $DB->get_in_or_equal($questionids);
825                 $sql = "";
826                 $questions = $DB->get_records_sql("
827                         SELECT q.*, c.contextid
828                         FROM {question} q
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');
833                 }
834                 question_move_questions_to_category($questionids, $tocategory->id);
835                 redirect($this->baseurl->out(false,
836                         array('category' => "$tocategoryid,$contextid")));
837             }
838         }
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));
852                             } else {
853                                 question_delete_question($questionid);
854                             }
855                         }
856                     }
857                     redirect($this->baseurl);
858                 } else {
859                     print_error('invalidconfirm', 'question');
860                 }
861             }
862         }
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);
873         }
874     }
876     public function process_actions_needing_ui() {
877         global $DB, $OUTPUT;
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)) {
887                     $key = $matches[1];
888                     $questionlist .= $key.',';
889                     question_require_capability_on($key, 'edit');
890                     if (questions_in_use(array($key))) {
891                         $questionnames .= '* ';
892                         $inuse = true;
893                     }
894                     $questionnames .= $DB->get_field('question', 'name', array('id' => $key)) . '<br />';
895                 }
896             }
897             if (!$questionlist) { // No questions were selected.
898                 redirect($this->baseurl);
899             }
900             $questionlist = rtrim($questionlist, ',');
902             // Add an explanation about questions in use.
903             if ($inuse) {
904                 $questionnames .= '<br />'.get_string('questionsinuse', 'question');
905             }
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);
912             return true;
913         }
914     }
916     /**
917      * Add another search control to this view.
918      * @param \core_question\bank\search\condition $searchcondition the condition to add.
919      */
920     public function add_searchcondition($searchcondition) {
921         $this->searchconditions[] = $searchcondition;
922     }