MDL-70821 course: Remove old manual completion toggling
[moodle.git] / mod / glossary / view.php
blobadadafe2c0a00ea7143194b9be949129117e1163
1 <?php
3 /// This page prints a particular instance of glossary
4 require_once("../../config.php");
5 require_once("lib.php");
6 require_once($CFG->libdir . '/completionlib.php');
7 require_once("$CFG->libdir/rsslib.php");
9 $id = optional_param('id', 0, PARAM_INT); // Course Module ID
10 $g = optional_param('g', 0, PARAM_INT); // Glossary ID
12 $tab = optional_param('tab', GLOSSARY_NO_VIEW, PARAM_ALPHA); // browsing entries by categories?
13 $displayformat = optional_param('displayformat',-1, PARAM_INT); // override of the glossary display format
15 $mode = optional_param('mode', '', PARAM_ALPHA); // term entry cat date letter search author approval
16 $hook = optional_param('hook', '', PARAM_CLEAN); // the term, entry, cat, etc... to look for based on mode
17 $fullsearch = optional_param('fullsearch', 0,PARAM_INT); // full search (concept and definition) when searching?
18 $sortkey = optional_param('sortkey', '', PARAM_ALPHA);// Sorted view: CREATION | UPDATE | FIRSTNAME | LASTNAME...
19 $sortorder = optional_param('sortorder', 'ASC', PARAM_ALPHA); // it defines the order of the sorting (ASC or DESC)
20 $offset = optional_param('offset', 0,PARAM_INT); // entries to bypass (for paging purposes)
21 $page = optional_param('page', 0,PARAM_INT); // Page to show (for paging purposes)
22 $show = optional_param('show', '', PARAM_ALPHA); // [ concept | alias ] => mode=term hook=$show
24 if (!empty($id)) {
25 if (! $cm = get_coursemodule_from_id('glossary', $id)) {
26 print_error('invalidcoursemodule');
28 if (! $course = $DB->get_record("course", array("id"=>$cm->course))) {
29 print_error('coursemisconf');
31 if (! $glossary = $DB->get_record("glossary", array("id"=>$cm->instance))) {
32 print_error('invalidid', 'glossary');
35 } else if (!empty($g)) {
36 if (! $glossary = $DB->get_record("glossary", array("id"=>$g))) {
37 print_error('invalidid', 'glossary');
39 if (! $course = $DB->get_record("course", array("id"=>$glossary->course))) {
40 print_error('invalidcourseid');
42 if (!$cm = get_coursemodule_from_instance("glossary", $glossary->id, $course->id)) {
43 print_error('invalidcoursemodule');
45 $id = $cm->id;
46 } else {
47 print_error('invalidid', 'glossary');
50 require_course_login($course->id, true, $cm);
51 $context = context_module::instance($cm->id);
52 require_capability('mod/glossary:view', $context);
54 // Prepare format_string/text options
55 $fmtoptions = array(
56 'context' => $context);
58 require_once($CFG->dirroot . '/comment/lib.php');
59 comment::init();
61 /// redirecting if adding a new entry
62 if ($tab == GLOSSARY_ADDENTRY_VIEW ) {
63 redirect("edit.php?cmid=$cm->id&amp;mode=$mode");
66 /// setting the defaut number of entries per page if not set
67 if ( !$entriesbypage = $glossary->entbypage ) {
68 $entriesbypage = $CFG->glossary_entbypage;
71 // If we have received a page, recalculate offset and page size.
72 $pagelimit = $entriesbypage;
73 if ($page > 0 && $offset == 0) {
74 $offset = $page * $entriesbypage;
75 } else if ($page < 0) {
76 $offset = 0;
77 $pagelimit = 0;
80 /// setting the default values for the display mode of the current glossary
81 /// only if the glossary is viewed by the first time
82 if ( $dp = $DB->get_record('glossary_formats', array('name'=>$glossary->displayformat)) ) {
83 /// Based on format->defaultmode, we build the defaulttab to be showed sometimes
84 $showtabs = glossary_get_visible_tabs($dp);
85 switch ($dp->defaultmode) {
86 case 'cat':
87 $defaulttab = GLOSSARY_CATEGORY_VIEW;
89 // Handle defaultmode if 'category' tab is disabled. Fallback to 'standard' tab.
90 if (!in_array(GLOSSARY_CATEGORY, $showtabs)) {
91 $defaulttab = GLOSSARY_STANDARD_VIEW;
94 break;
95 case 'date':
96 $defaulttab = GLOSSARY_DATE_VIEW;
98 // Handle defaultmode if 'date' tab is disabled. Fallback to 'standard' tab.
99 if (!in_array(GLOSSARY_DATE, $showtabs)) {
100 $defaulttab = GLOSSARY_STANDARD_VIEW;
103 break;
104 case 'author':
105 $defaulttab = GLOSSARY_AUTHOR_VIEW;
107 // Handle defaultmode if 'author' tab is disabled. Fallback to 'standard' tab.
108 if (!in_array(GLOSSARY_AUTHOR, $showtabs)) {
109 $defaulttab = GLOSSARY_STANDARD_VIEW;
112 break;
113 default:
114 $defaulttab = GLOSSARY_STANDARD_VIEW;
116 /// Fetch the rest of variables
117 $printpivot = $dp->showgroup;
118 if ( $mode == '' and $hook == '' and $show == '') {
119 $mode = $dp->defaultmode;
120 $hook = $dp->defaulthook;
121 $sortkey = $dp->sortkey;
122 $sortorder = $dp->sortorder;
124 } else {
125 $defaulttab = GLOSSARY_STANDARD_VIEW;
126 $showtabs = array($defaulttab);
127 $printpivot = 1;
128 if ( $mode == '' and $hook == '' and $show == '') {
129 $mode = 'letter';
130 $hook = 'ALL';
134 if ( $displayformat == -1 ) {
135 $displayformat = $glossary->displayformat;
138 if ( $show ) {
139 $mode = 'term';
140 $hook = $show;
141 $show = '';
144 /// stablishing flag variables
145 if ( $sortorder = strtolower($sortorder) ) {
146 if ($sortorder != 'asc' and $sortorder != 'desc') {
147 $sortorder = '';
150 if ( $sortkey = strtoupper($sortkey) ) {
151 if ($sortkey != 'CREATION' and
152 $sortkey != 'UPDATE' and
153 $sortkey != 'FIRSTNAME' and
154 $sortkey != 'LASTNAME'
156 $sortkey = '';
160 switch ( $mode = strtolower($mode) ) {
161 case 'search': /// looking for terms containing certain word(s)
162 $tab = GLOSSARY_STANDARD_VIEW;
164 //Clean a bit the search string
165 $hook = trim(strip_tags($hook));
167 break;
169 case 'entry': /// Looking for a certain entry id
170 $tab = GLOSSARY_STANDARD_VIEW;
171 if ( $dp = $DB->get_record("glossary_formats", array("name"=>$glossary->displayformat)) ) {
172 $displayformat = $dp->popupformatname;
174 break;
176 case 'cat': /// Looking for a certain cat
177 $tab = GLOSSARY_CATEGORY_VIEW;
179 // Validation - we don't want to display 'category' tab if it is disabled.
180 if (!in_array(GLOSSARY_CATEGORY, $showtabs)) {
181 $tab = GLOSSARY_STANDARD_VIEW;
184 if ( $hook > 0 ) {
185 $category = $DB->get_record("glossary_categories", array("id"=>$hook));
187 break;
189 case 'approval': /// Looking for entries waiting for approval
190 $tab = GLOSSARY_APPROVAL_VIEW;
191 // Override the display format with the approvaldisplayformat
192 if ($glossary->approvaldisplayformat !== 'default' && ($df = $DB->get_record("glossary_formats",
193 array("name" => $glossary->approvaldisplayformat)))) {
194 $displayformat = $df->popupformatname;
196 if ( !$hook and !$sortkey and !$sortorder) {
197 $hook = 'ALL';
199 break;
201 case 'term': /// Looking for entries that include certain term in its concept, definition or aliases
202 $tab = GLOSSARY_STANDARD_VIEW;
203 break;
205 case 'date':
206 $tab = GLOSSARY_DATE_VIEW;
208 // Validation - we dont want to display 'date' tab if it is disabled.
209 if (!in_array(GLOSSARY_DATE, $showtabs)) {
210 $tab = GLOSSARY_STANDARD_VIEW;
213 if ( !$sortkey ) {
214 $sortkey = 'UPDATE';
216 if ( !$sortorder ) {
217 $sortorder = 'desc';
219 break;
221 case 'author': /// Looking for entries, browsed by author
222 $tab = GLOSSARY_AUTHOR_VIEW;
224 // Validation - we dont want to display 'author' tab if it is disabled.
225 if (!in_array(GLOSSARY_AUTHOR, $showtabs)) {
226 $tab = GLOSSARY_STANDARD_VIEW;
229 if ( !$hook ) {
230 $hook = 'ALL';
232 if ( !$sortkey ) {
233 $sortkey = 'FIRSTNAME';
235 if ( !$sortorder ) {
236 $sortorder = 'asc';
238 break;
240 case 'letter': /// Looking for entries that begin with a certain letter, ALL or SPECIAL characters
241 default:
242 $tab = GLOSSARY_STANDARD_VIEW;
243 if ( !$hook ) {
244 $hook = 'ALL';
246 break;
249 switch ( $tab ) {
250 case GLOSSARY_IMPORT_VIEW:
251 case GLOSSARY_EXPORT_VIEW:
252 case GLOSSARY_APPROVAL_VIEW:
253 $showcommonelements = 0;
254 break;
256 default:
257 $showcommonelements = 1;
258 break;
261 // Trigger module viewed event.
262 glossary_view($glossary, $course, $cm, $context, $mode);
264 /// Printing the heading
265 $strglossaries = get_string("modulenameplural", "glossary");
266 $strglossary = get_string("modulename", "glossary");
267 $strallcategories = get_string("allcategories", "glossary");
268 $straddentry = get_string("addentry", "glossary");
269 $strnoentries = get_string("noentries", "glossary");
270 $strsearchindefinition = get_string("searchindefinition", "glossary");
271 $strsearch = get_string("search");
272 $strwaitingapproval = get_string('waitingapproval', 'glossary');
274 /// If we are in approval mode, prit special header
275 $PAGE->set_title($glossary->name);
276 $PAGE->set_heading($course->fullname);
277 $url = new moodle_url('/mod/glossary/view.php', array('id'=>$cm->id));
278 if (isset($mode)) {
279 $url->param('mode', $mode);
281 $PAGE->set_url($url);
282 $PAGE->force_settings_menu();
284 if (!empty($CFG->enablerssfeeds) && !empty($CFG->glossary_enablerssfeeds)
285 && $glossary->rsstype && $glossary->rssarticles) {
287 $rsstitle = format_string($course->shortname, true, array('context' => context_course::instance($course->id))) . ': '. format_string($glossary->name);
288 rss_add_http_header($context, 'mod_glossary', $glossary, $rsstitle);
291 if ($tab == GLOSSARY_APPROVAL_VIEW) {
292 require_capability('mod/glossary:approve', $context);
293 $PAGE->navbar->add($strwaitingapproval);
294 echo $OUTPUT->header();
295 echo $OUTPUT->heading($strwaitingapproval);
296 } else { /// Print standard header
297 echo $OUTPUT->header();
299 echo $OUTPUT->heading(format_string($glossary->name), 2);
301 /// All this depends if whe have $showcommonelements
302 if ($showcommonelements) {
303 /// To calculate available options
304 $availableoptions = '';
306 /// Decide about to print the import link
307 /*if (has_capability('mod/glossary:import', $context)) {
308 $availableoptions = '<span class="helplink">' .
309 '<a href="' . $CFG->wwwroot . '/mod/glossary/import.php?id=' . $cm->id . '"' .
310 ' title="' . s(get_string('importentries', 'glossary')) . '">' .
311 get_string('importentries', 'glossary') . '</a>' .
312 '</span>';
314 /// Decide about to print the export link
315 if (has_capability('mod/glossary:export', $context)) {
316 if ($availableoptions) {
317 $availableoptions .= '&nbsp;/&nbsp;';
319 $availableoptions .='<span class="helplink">' .
320 '<a href="' . $CFG->wwwroot . '/mod/glossary/export.php?id=' . $cm->id .
321 '&amp;mode='.$mode . '&amp;hook=' . urlencode($hook) . '"' .
322 ' title="' . s(get_string('exportentries', 'glossary')) . '">' .
323 get_string('exportentries', 'glossary') . '</a>' .
324 '</span>';
327 /// Decide about to print the approval link
328 if (has_capability('mod/glossary:approve', $context)) {
329 /// Check we have pending entries
330 if ($hiddenentries = $DB->count_records('glossary_entries', array('glossaryid'=>$glossary->id, 'approved'=>0))) {
331 if ($availableoptions) {
332 $availableoptions .= '<br />';
334 $availableoptions .='<span class="helplink">' .
335 '<a href="' . $CFG->wwwroot . '/mod/glossary/view.php?id=' . $cm->id .
336 '&amp;mode=approval' . '"' .
337 ' title="' . s(get_string('waitingapproval', 'glossary')) . '">' .
338 get_string('waitingapproval', 'glossary') . ' ('.$hiddenentries.')</a>' .
339 '</span>';
343 /// Start to print glossary controls
344 // print_box_start('glossarycontrol clearfix');
345 echo '<div class="glossarycontrol" style="text-align: right">';
346 echo $availableoptions;
348 /// The print icon
349 if ( $showcommonelements and $mode != 'search') {
350 if (has_capability('mod/glossary:manageentries', $context) or $glossary->allowprintview) {
351 $params = array(
352 'id' => $cm->id,
353 'mode' => $mode,
354 'hook' => $hook,
355 'sortkey' => $sortkey,
356 'sortorder' => $sortorder,
357 'offset' => $offset,
358 'pagelimit' => $pagelimit
360 $printurl = new moodle_url('/mod/glossary/print.php', $params);
361 $printtitle = get_string('printerfriendly', 'glossary');
362 $printattributes = array(
363 'class' => 'printicon',
364 'title' => $printtitle
366 echo html_writer::link($printurl, $printtitle, $printattributes);
369 /// End glossary controls
370 // print_box_end(); /// glossarycontrol
371 echo '</div><br />';
373 // print_box('&nbsp;', 'clearer');
376 /// Info box
377 if ($glossary->intro && $showcommonelements) {
378 echo $OUTPUT->box(format_module_intro('glossary', $glossary, $cm->id), 'generalbox', 'intro');
381 /// Search box
382 if ($showcommonelements ) {
383 $fullsearchchecked = false;
384 if ($fullsearch || $mode != 'search') {
385 $fullsearchchecked = true;
388 $check = [
389 'name' => 'fullsearch',
390 'id' => 'fullsearch',
391 'value' => '1',
392 'checked' => $fullsearchchecked,
393 'label' => $strsearchindefinition
396 $checkbox = $OUTPUT->render_from_template('core/checkbox', $check);
398 $hiddenfields = [
399 (object) ['name' => 'id', 'value' => $cm->id],
400 (object) ['name' => 'mode', 'value' => 'search'],
402 $data = [
403 'action' => new moodle_url('/mod/glossary/view.php'),
404 'hiddenfields' => $hiddenfields,
405 'otherfields' => $checkbox,
406 'inputname' => 'hook',
407 'query' => ($mode == 'search') ? s($hook) : '',
408 'searchstring' => get_string('search'),
409 'extraclasses' => 'my-2'
411 echo $OUTPUT->render_from_template('core/search_input', $data);
414 /// Show the add entry button if allowed
415 if (has_capability('mod/glossary:write', $context) && $showcommonelements ) {
416 echo '<div class="singlebutton glossaryaddentry">';
417 echo "<form class=\"form form-inline mb-1\" id=\"newentryform\" method=\"get\" action=\"$CFG->wwwroot/mod/glossary/edit.php\">";
418 echo '<div>';
419 echo "<input type=\"hidden\" name=\"cmid\" value=\"$cm->id\" />";
420 echo '<input type="submit" value="'.get_string('addentry', 'glossary').'" class="btn btn-secondary" />';
421 echo '</div>';
422 echo '</form>';
423 echo "</div>\n";
427 require("tabs.php");
429 require("sql.php");
431 /// printing the entries
432 $entriesshown = 0;
433 $currentpivot = '';
434 $paging = NULL;
436 if ($allentries) {
438 //Decide if we must show the ALL link in the pagebar
439 $specialtext = '';
440 if ($glossary->showall) {
441 $specialtext = get_string("allentries","glossary");
444 //Build paging bar
445 $baseurl = new moodle_url('/mod/glossary/view.php', ['id' => $id, 'mode' => $mode, 'hook' => $hook,
446 'sortkey' => $sortkey, 'sortorder' => $sortorder, 'fullsearch' => $fullsearch]);
447 $paging = glossary_get_paging_bar($count, $page, $entriesbypage, $baseurl->out() . '&amp;',
448 9999, 10, '&nbsp;&nbsp;', $specialtext, -1);
450 echo '<div class="paging">';
451 echo $paging;
452 echo '</div>';
454 //load ratings
455 require_once($CFG->dirroot.'/rating/lib.php');
456 if ($glossary->assessed != RATING_AGGREGATE_NONE) {
457 $ratingoptions = new stdClass;
458 $ratingoptions->context = $context;
459 $ratingoptions->component = 'mod_glossary';
460 $ratingoptions->ratingarea = 'entry';
461 $ratingoptions->items = $allentries;
462 $ratingoptions->aggregate = $glossary->assessed;//the aggregation method
463 $ratingoptions->scaleid = $glossary->scale;
464 $ratingoptions->userid = $USER->id;
465 $ratingoptions->returnurl = $CFG->wwwroot.'/mod/glossary/view.php?id='.$cm->id;
466 $ratingoptions->assesstimestart = $glossary->assesstimestart;
467 $ratingoptions->assesstimefinish = $glossary->assesstimefinish;
469 $rm = new rating_manager();
470 $allentries = $rm->get_ratings($ratingoptions);
473 foreach ($allentries as $entry) {
475 // Setting the pivot for the current entry
476 if ($printpivot) {
477 $pivot = $entry->{$pivotkey};
478 $upperpivot = core_text::strtoupper($pivot);
479 $pivottoshow = core_text::strtoupper(format_string($pivot, true, $fmtoptions));
481 // Reduce pivot to 1cc if necessary.
482 if (!$fullpivot) {
483 $upperpivot = core_text::substr($upperpivot, 0, 1);
484 $pivottoshow = core_text::substr($pivottoshow, 0, 1);
487 // If there's a group break.
488 if ($currentpivot != $upperpivot) {
489 $currentpivot = $upperpivot;
491 // print the group break if apply
493 echo '<div>';
494 echo '<table cellspacing="0" class="glossarycategoryheader">';
496 echo '<tr>';
497 if ($userispivot) {
498 // printing the user icon if defined (only when browsing authors)
499 echo '<th align="left">';
500 $user = mod_glossary_entry_query_builder::get_user_from_record($entry);
501 echo $OUTPUT->user_picture($user, array('courseid'=>$course->id));
502 $pivottoshow = fullname($user, has_capability('moodle/site:viewfullnames', context_course::instance($course->id)));
503 } else {
504 echo '<th >';
507 echo $OUTPUT->heading($pivottoshow, 3);
508 echo "</th></tr></table></div>\n";
512 /// highlight the term if necessary
513 if ($mode == 'search') {
514 //We have to strip any word starting by + and take out words starting by -
515 //to make highlight works properly
516 $searchterms = explode(' ', $hook); // Search for words independently
517 foreach ($searchterms as $key => $searchterm) {
518 if (preg_match('/^\-/',$searchterm)) {
519 unset($searchterms[$key]);
520 } else {
521 $searchterms[$key] = preg_replace('/^\+/','',$searchterm);
523 //Avoid highlight of <2 len strings. It's a well known hilight limitation.
524 if (strlen($searchterm) < 2) {
525 unset($searchterms[$key]);
528 $strippedsearch = implode(' ', $searchterms); // Rebuild the string
529 $entry->highlight = $strippedsearch;
532 /// and finally print the entry.
533 glossary_print_entry($course, $cm, $glossary, $entry, $mode, $hook,1,$displayformat);
534 $entriesshown++;
536 // The all entries value may be a recordset or an array.
537 if ($allentries instanceof moodle_recordset) {
538 $allentries->close();
541 if ( !$entriesshown ) {
542 echo $OUTPUT->box(get_string("noentries","glossary"), "generalbox boxaligncenter boxwidthwide");
545 if (!empty($formsent)) {
546 // close the form properly if used
547 echo "</div>";
548 echo "</form>";
551 if ( $paging ) {
552 echo '<hr />';
553 echo '<div class="paging">';
554 echo $paging;
555 echo '</div>';
557 echo '<br />';
558 glossary_print_tabbed_table_end();
560 /// Finish the page
561 echo $OUTPUT->footer();