3 /// Displays external information about a course
5 require_once("../config.php");
6 require_once("lib.php");
8 $search = optional_param('search', '', PARAM_RAW
); // search words
9 $page = optional_param('page', 0, PARAM_INT
); // which page to show
10 $perpage = optional_param('perpage', 10, PARAM_INT
); // how many per page
11 $moveto = optional_param('moveto', 0, PARAM_INT
); // move to category
12 $edit = optional_param('edit', -1, PARAM_BOOL
);
13 $hide = optional_param('hide', 0, PARAM_INT
);
14 $show = optional_param('show', 0, PARAM_INT
);
15 $blocklist = optional_param('blocklist', 0, PARAM_INT
);
16 $modulelist= optional_param('modulelist', '', PARAM_ALPHAEXT
);
18 $search = trim(strip_tags($search)); // trim & clean raw searched string
21 $searchterms = explode(" ", $search); // Search for words independently
22 foreach ($searchterms as $key => $searchterm) {
23 if (strlen($searchterm) < 2) {
24 unset($searchterms[$key]);
27 $search = trim(implode(" ", $searchterms));
32 if ($CFG->forcelogin
) {
36 if (has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM
))) {
38 $USER->categoryediting
= $edit;
39 // If the edit mode we are leaving has higher per page than the one we are entering,
40 // with pages, chances are you will get a no courses found error. So when we are switching
41 // modes, set page to 0.
48 if (has_capability('moodle/course:visibility', get_context_instance(CONTEXT_SYSTEM
))) {
50 /// Hide or show a course
52 if ($hide or $show and confirm_sesskey()) {
54 $course = get_record("course", "id", $hide);
57 $course = get_record("course", "id", $show);
61 if (! set_field("course", "visible", $visible, "id", $course->id
)) {
62 notify("Could not update that course!");
69 if (has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM
)) && $perpage != 99999) {
73 $displaylist = array();
74 $parentlist = array();
75 make_categories_list($displaylist, $parentlist, "");
77 $strcourses = get_string("courses");
78 $strsearch = get_string("search");
79 $strsearchresults = get_string("searchresults");
80 $strcategory = get_string("category");
81 $strselect = get_string("select");
82 $strselectall = get_string("selectall");
83 $strdeselectall = get_string("deselectall");
84 $stredit = get_string("edit");
85 $strfrontpage = get_string('frontpage', 'admin');
86 $strnovalidcourses = get_string('novalidcourses');
88 if (empty($search) and empty($blocklist) and empty($modulelist)) {
90 $navlinks[] = array('name' => $strcourses, 'link' => "index.php", 'type' => 'misc');
91 $navlinks[] = array('name' => $strsearch, 'link' => null, 'type' => 'misc');
92 $navigation = build_navigation($navlinks);
94 print_header("$site->fullname : $strsearch", $site->fullname
, $navigation, "", "");
95 print_simple_box_start("center");
98 print_course_search("", false, "plain");
100 print_string("searchhelp");
103 print_simple_box_end();
108 if (!empty($moveto) and $data = data_submitted() and confirm_sesskey()) { // Some courses are being moved
110 if (! $destcategory = get_record("course_categories", "id", $data->moveto
)) {
111 error("Error finding the category");
115 foreach ( $data as $key => $value ) {
116 if (preg_match('/^c\d+$/', $key)) {
117 array_push($courses, substr($key, 1));
120 move_courses($courses, $data->moveto
);
123 // get list of courses containing blocks if required
124 if (!empty($blocklist) and confirm_sesskey()) {
125 $blockid = $blocklist;
126 if (!$blocks = get_records('block_instance', 'blockid', $blockid)) {
127 error( "Could not read data for blockid=$blockid" );
130 // run through blocks and get (unique) courses
132 foreach ($blocks as $block) {
133 $courseid = $block->pageid
;
134 // MDL-11167, blocks can be placed on mymoodle, or the blogs page
135 // and it should not show up on course search page
136 if ($courseid==0 ||
$block->pagetype
!= 'course-view') {
139 if (!$course = get_record('course', 'id', $courseid)) {
140 error( "Could not read data for courseid=$courseid" );
142 $courses[$courseid] = $course;
144 $totalcount = count( $courses );
146 // get list of courses containing modules if required
147 elseif (!empty($modulelist) and confirm_sesskey()) {
148 $modulename = $modulelist;
149 if (!$modules = get_records($modulename)) {
150 error( "Could not read data for module=$modulename" );
153 // run through modules and get (unique) courses
155 foreach ($modules as $module) {
156 $courseid = $module->course
;
160 if (!$course = get_record('course', 'id', $courseid)) {
161 error( "Could not read data for courseid=$courseid" );
163 $courses[$courseid] = $course;
165 $totalcount = count($courses);
168 $courses = get_courses_search($searchterms, "fullname ASC",
169 $page, $perpage, $totalcount);
172 $searchform = print_course_search($search, true, "navbar");
174 if (!empty($courses) && has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM
))) {
175 $searchform .= update_categories_search_button($search,$page,$perpage);
179 $navlinks[] = array('name' => $strcourses, 'link' => 'index.php', 'type' => 'misc');
180 $navlinks[] = array('name' => $strsearch, 'link' => 'search.php', 'type' => 'misc');
181 $navlinks[] = array('name' => "'".s($search, true)."'", 'link' => null, 'type' => 'misc');
182 $navigation = build_navigation($navlinks);
184 print_header("$site->fullname : $strsearchresults", $site->fullname
, $navigation, "", "", "", $searchform);
190 print_heading("$strsearchresults: $totalcount");
192 $encodedsearch = urlencode(stripslashes($search));
193 print_paging_bar($totalcount, $page, $perpage, "search.php?search=$encodedsearch&perpage=$perpage&",'page',($perpage == 99999));
195 if ($perpage != 99999 && $totalcount > $perpage) {
197 echo "<a href=\"search.php?search=$encodedsearch&perpage=99999\">".get_string("showall", "", $totalcount)."</a>";
198 echo "</p></center>";
201 if (!has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM
))) {
202 foreach ($courses as $course) {
203 $course->fullname
= highlight("$search", $course->fullname
);
204 $course->summary
= highlight("$search", $course->summary
);
205 $course->summary
.= "<br /><p class=\"category\">";
206 $course->summary
.= "$strcategory: <a href=\"category.php?id=$course->category\">";
207 $course->summary
.= $displaylist[$course->category
];
208 $course->summary
.= "</a></p>";
209 print_course($course);
212 } else { // slightly more sophisticated
214 echo "<form id=\"movecourses\" action=\"search.php\" method=\"post\">\n";
215 echo "<div><input type=\"hidden\" name=\"sesskey\" value=\"$USER->sesskey\" />\n";
216 echo "<input type=\"hidden\" name=\"search\" value=\"".s($search, true)."\" />\n";
217 echo "<input type=\"hidden\" name=\"page\" value=\"$page\" />\n";
218 echo "<input type=\"hidden\" name=\"perpage\" value=\"$perpage\" /></div>\n";
219 echo "<table border=\"0\" cellspacing=\"2\" cellpadding=\"4\" class=\"generalbox boxaligncenter\">\n<tr>\n";
220 echo "<th scope=\"col\">$strcourses</th>\n";
221 echo "<th scope=\"col\">$strcategory</th>\n";
222 echo "<th scope=\"col\">$strselect</th>\n";
223 echo "<th scope=\"col\">$stredit</th></tr>\n";
225 foreach ($courses as $course) {
227 if (isset($course->context
)) {
228 $coursecontext = $course->context
;
230 $coursecontext = get_context_instance(CONTEXT_COURSE
, $course->id
);
233 $course->fullname
= highlight("$search", $course->fullname
);
234 $linkcss = $course->visible ?
"" : " class=\"dimmed\" ";
236 // are we displaying the front page (courseid=1)?
237 if ($course->id
== 1) {
239 echo "<td><a href=\"$CFG->wwwroot\">$strfrontpage</a></td>\n";
241 // can't do anything else with the front page
242 echo " <td> </td>\n"; // category place
243 echo " <td> </td>\n"; // select place
244 echo " <td> </td>\n"; // edit place
250 echo "<td><a $linkcss href=\"view.php?id=$course->id\">"
251 . format_string($course->fullname
) . "</a></td>\n";
252 echo "<td>".$displaylist[$course->category
]."</td>\n";
255 // this is ok since this will get inherited from course category context
257 if (has_capability('moodle/category:update', $coursecontext)) {
258 echo "<input type=\"checkbox\" name=\"c$course->id\" />\n";
260 echo "<input type=\"checkbox\" name=\"c$course->id\" disabled=\"disabled\" />\n";
265 $pixpath = $CFG->pixpath
;
267 // checks whether user can update course settings
268 if (has_capability('moodle/course:update', $coursecontext)) {
269 echo "<a title=\"".get_string("settings")."\" href=\"$CFG->wwwroot/course/edit.php?id=$course->id\">\n<img".
270 " src=\"$pixpath/t/edit.gif\" class=\"iconsmall\" alt=\"".get_string("settings")."\" /></a>\n ";
273 // checks whether user can do role assignment
274 if (has_capability('moodle/role:assign', $coursecontext)) {
275 echo'<a title="'.get_string('assignroles', 'role').'" href="'.$CFG->wwwroot
.'/'.$CFG->admin
.'/roles/assign.php?contextid='.$coursecontext->id
.'">';
276 echo '<img src="'.$CFG->pixpath
.'/i/roles.gif" class="iconsmall" alt="'.get_string('assignroles', 'role').'" /></a> ' . "\n";
279 // checks whether user can delete course
280 if (has_capability('moodle/course:delete', $coursecontext)) {
281 echo "<a title=\"".get_string("delete")."\" href=\"delete.php?id=$course->id\">\n<img".
282 " src=\"$pixpath/t/delete.gif\" class=\"iconsmall\" alt=\"".get_string("delete")."\" /></a>\n ";
285 // checks whether user can change visibility
286 if (has_capability('moodle/course:visibility', $coursecontext)) {
287 if (!empty($course->visible
)) {
288 echo "<a title=\"".get_string("hide")."\" href=\"search.php?search=$encodedsearch&perpage=$perpage&page=$page&hide=$course->id&sesskey=$USER->sesskey\">\n<img".
289 " src=\"$pixpath/t/hide.gif\" class=\"iconsmall\" alt=\"".get_string("hide")."\" /></a>\n ";
291 echo "<a title=\"".get_string("show")."\" href=\"search.php?search=$encodedsearch&perpage=$perpage&page=$page&show=$course->id&sesskey=$USER->sesskey\">\n<img".
292 " src=\"$pixpath/t/show.gif\" class=\"iconsmall\" alt=\"".get_string("show")."\" /></a>\n ";
296 // checks whether user can do site backup
297 if (has_capability('moodle/site:backup', $coursecontext)) {
298 echo "<a title=\"".get_string("backup")."\" href=\"../backup/backup.php?id=$course->id\">\n<img".
299 " src=\"$pixpath/t/backup.gif\" class=\"iconsmall\" alt=\"".get_string("backup")."\" /></a>\n ";
302 // checks whether user can do restore
303 if (has_capability('moodle/site:restore', $coursecontext)) {
304 echo "<a title=\"".get_string("restore")."\" href=\"../files/index.php?id=$course->id&wdir=/backupdata\">\n<img".
305 " src=\"$pixpath/t/restore.gif\" class=\"iconsmall\" alt=\"".get_string("restore")."\" /></a>\n ";
308 echo "</td>\n</tr>\n";
310 echo "<tr>\n<td colspan=\"4\" style=\"text-align:center\">\n";
312 echo "<input type=\"button\" onclick=\"checkall()\" value=\"$strselectall\" />\n";
313 echo "<input type=\"button\" onclick=\"uncheckall()\" value=\"$strdeselectall\" />\n";
314 choose_from_menu ($displaylist, "moveto", "", get_string("moveselectedcoursesto"), "javascript: getElementById('movecourses').submit()");
315 echo "</td>\n</tr>\n";
316 echo "</table>\n</form>";
320 print_paging_bar($totalcount, $page, $perpage, "search.php?search=$encodedsearch&perpage=$perpage&",'page',($perpage == 99999));
322 if ($perpage != 99999 && $totalcount > $perpage) {
324 echo "<a href=\"search.php?search=$encodedsearch&perpage=99999\">".get_string("showall", "", $totalcount)."</a>";
325 echo "</p></center>";
329 if (!empty($search)) {
330 print_heading(get_string("nocoursesfound", "", s($search, true)));
333 print_heading( $strnovalidcourses );
339 print_course_search($search);