Commit | Line | Data |
---|---|---|
aa6c1ced | 1 | <?php |
f520dcd9 SH |
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/>. | |
16 | ||
17 | /** | |
18 | * Displays external information about a course | |
19 | * @package core | |
20 | * @category course | |
21 | * @copyright 1999 onwards Martin Dougiamas http://dougiamas.com | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | */ | |
24 | ||
25 | require_once("../config.php"); | |
26 | require_once($CFG->dirroot.'/course/lib.php'); | |
4e0b6025 | 27 | require_once($CFG->libdir.'/coursecatlib.php'); |
f520dcd9 SH |
28 | |
29 | $search = optional_param('search', '', PARAM_RAW); // search words | |
30 | $page = optional_param('page', 0, PARAM_INT); // which page to show | |
837d548e | 31 | $perpage = optional_param('perpage', '', PARAM_RAW); // how many per page, may be integer or 'all' |
f520dcd9 SH |
32 | $blocklist = optional_param('blocklist', 0, PARAM_INT); |
33 | $modulelist= optional_param('modulelist', '', PARAM_PLUGIN); | |
34 | ||
35 | // List of minimum capabilities which user need to have for editing/moving course | |
36 | $capabilities = array('moodle/course:create', 'moodle/category:manage'); | |
37 | ||
4e0b6025 MG |
38 | // Populate usercatlist with list of category id's with course:create and category:manage capabilities. |
39 | $usercatlist = coursecat::make_categories_list($capabilities); | |
f520dcd9 SH |
40 | |
41 | $search = trim(strip_tags($search)); // trim & clean raw searched string | |
a8b56716 | 42 | |
f520dcd9 | 43 | $site = get_site(); |
38a10939 | 44 | |
837d548e MG |
45 | $searchcriteria = array(); |
46 | foreach (array('search', 'blocklist', 'modulelist') as $param) { | |
f520dcd9 | 47 | if (!empty($$param)) { |
837d548e | 48 | $searchcriteria[$param] = $$param; |
680a65a0 | 49 | } |
f520dcd9 | 50 | } |
837d548e MG |
51 | $urlparams = array(); |
52 | if ($perpage !== 'all' && !($perpage = (int)$perpage)) { | |
53 | // default number of courses per page | |
54 | $perpage = $CFG->coursesperpage; | |
55 | } else { | |
f520dcd9 SH |
56 | $urlparams['perpage'] = $perpage; |
57 | } | |
837d548e MG |
58 | if (!empty($page)) { |
59 | $urlparams['page'] = $page; | |
60 | } | |
61 | $PAGE->set_url('/course/search.php', $searchcriteria + $urlparams); | |
f520dcd9 SH |
62 | $PAGE->set_context(context_system::instance()); |
63 | $PAGE->set_pagelayout('standard'); | |
f4b571ab | 64 | $courserenderer = $PAGE->get_renderer('core', 'course'); |
f520dcd9 SH |
65 | |
66 | if ($CFG->forcelogin) { | |
67 | require_login(); | |
68 | } | |
69 | ||
f520dcd9 SH |
70 | $strcourses = new lang_string("courses"); |
71 | $strsearch = new lang_string("search"); | |
72 | $strsearchresults = new lang_string("searchresults"); | |
f520dcd9 SH |
73 | $strnovalidcourses = new lang_string('novalidcourses'); |
74 | ||
f520dcd9 SH |
75 | $PAGE->navbar->add($strcourses, new moodle_url('/course/index.php')); |
76 | $PAGE->navbar->add($strsearch, new moodle_url('/course/search.php')); | |
77 | if (!empty($search)) { | |
78 | $PAGE->navbar->add(s($search)); | |
79 | } | |
cf5b731c | 80 | |
60047003 MG |
81 | if (empty($searchcriteria)) { |
82 | // no search criteria specified, print page with just search form | |
83 | $PAGE->set_title("$site->fullname : $strsearch"); | |
f520dcd9 | 84 | } else { |
60047003 MG |
85 | // this is search results page |
86 | $PAGE->set_title("$site->fullname : $strsearchresults"); | |
87 | // Link to manage search results should be visible if user have system or category level capability | |
88 | if ((can_edit_in_category() || !empty($usercatlist))) { | |
89 | $aurl = new moodle_url('/course/manage.php', $searchcriteria); | |
90 | $searchform = $OUTPUT->single_button($aurl, get_string('managecourses'), 'get'); | |
91 | } else { | |
92 | $searchform = $courserenderer->course_search_form($search, 'navbar'); | |
f520dcd9 | 93 | } |
60047003 | 94 | $PAGE->set_button($searchform); |
f520dcd9 SH |
95 | } |
96 | ||
60047003 | 97 | $PAGE->set_heading($site->fullname); |
f520dcd9 | 98 | |
60047003 MG |
99 | echo $OUTPUT->header(); |
100 | echo $courserenderer->search_courses($searchcriteria); | |
f520dcd9 | 101 | echo $OUTPUT->footer(); |