MDL-73975 course: Remove course_search_form template
[moodle.git] / question / deprecatedlib.php
blob9ab339a065efe677e68164f0fc653bd3d6905378
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.
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/>.
17 /**
18 * List of deprecated question functions.
20 * @package core_question
21 * @copyright 2024 Mathew May <mathew.solutions>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 /**
26 * @deprecated since Moodle 4.0 MDL-71585
28 function question_is_only_child_of_top_category_in_context() {
29 throw new coding_exception(__FUNCTION__ . '() has been removed.');
32 /**
33 * @deprecated since Moodle 4.0 MDL-71585
35 function question_is_top_category() {
36 throw new coding_exception(__FUNCTION__ . '() has been removed.');
39 /**
40 * @deprecated since Moodle 4.0 MDL-71585
42 function question_can_delete_cat() {
43 throw new coding_exception(__FUNCTION__ . '() has been removed.');
46 /**
47 * @deprecated since Moodle 4.0
49 function print_choose_qtype_to_add_form() {
50 throw new coding_exception(__FUNCTION__ . '() has been removed.');
53 /**
54 * @deprecated since Moodle 4.0
56 function create_new_question_button() {
57 throw new coding_exception(__FUNCTION__ . '() has been removed.');
60 /**
61 * @deprecated since Moodle 4.0
63 function core_question_output_fragment_tags_form() {
64 throw new coding_exception(__FUNCTION__ . '() has been removed.');
67 /**
68 * @deprecated since Moodle 4.0
70 function question_preview_question_pluginfile() {
71 throw new coding_exception(__FUNCTION__ . '() has been removed.');
74 /**
75 * @deprecated since Moodle 4.0
77 function question_preview_action_url() {
78 throw new coding_exception(__FUNCTION__ . '() has been removed.');
81 /**
82 * @deprecated since Moodle 4.0
84 function question_preview_form_url() {
85 throw new coding_exception(__FUNCTION__ . '() has been removed.');
88 /**
89 * @deprecated since Moodle 4.0
91 function restart_preview() {
92 throw new coding_exception(__FUNCTION__ . '() has been removed.');