mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
173 lines
7.2 KiB
PHP
173 lines
7.2 KiB
PHP
<?php // $Id$
|
|
|
|
function glossary_filter($courseid, $text) {
|
|
global $CFG;
|
|
|
|
// Trivial-cache - keyed on $cachedcourseid
|
|
static $nothingtodo;
|
|
static $conceptlist;
|
|
static $cachedcourseid;
|
|
|
|
if (empty($courseid)) {
|
|
$courseid = SITEID;
|
|
}
|
|
|
|
// Initialise/invalidate our trivial cache if dealing with a different course
|
|
if (!isset($cachedcourseid) || $cachedcourseid !== (int)$courseid) {
|
|
$conceptlist = array();
|
|
$nothingtodo = false;
|
|
}
|
|
$cachedcourseid = (int)$courseid;
|
|
|
|
if ($nothingtodo === true) {
|
|
return $text;
|
|
}
|
|
|
|
/// Create a list of all the concepts to search for. It may be cached already.
|
|
|
|
if (empty($conceptlist)) {
|
|
|
|
/// Find all the glossaries we need to examine
|
|
if (!$glossaries = get_records_sql_menu ('SELECT g.id, g.name
|
|
FROM '.$CFG->prefix.'glossary g,
|
|
'.$CFG->prefix.'course_modules cm,
|
|
'.$CFG->prefix.'modules m
|
|
WHERE m.name = \'glossary\' AND
|
|
cm.module = m.id AND
|
|
cm.visible = 1 AND
|
|
g.id = cm.instance AND
|
|
g.usedynalink != 0 AND
|
|
(g.course = \''.$courseid.'\' OR g.globalglossary = 1)
|
|
ORDER BY g.globalglossary, g.id')) {
|
|
$nothingtodo = true;
|
|
return $text;
|
|
}
|
|
|
|
/// Make a list of glossary IDs for searching
|
|
$glossarylist = '';
|
|
foreach ($glossaries as $glossaryid => $glossaryname) {
|
|
$glossarylist .= $glossaryid.',';
|
|
}
|
|
$glossarylist = substr($glossarylist,0,-1);
|
|
|
|
|
|
/// Pull out all the raw data from the database for entries, categories and aliases
|
|
$entries = get_records_select('glossary_entries',
|
|
'glossaryid IN ('.$glossarylist.') AND usedynalink != 0 AND '.
|
|
'approved != 0 AND concept != \'\'','',
|
|
'id,glossaryid, concept,casesensitive,0 AS category,fullmatch');
|
|
|
|
$categories = get_records_select('glossary_categories',
|
|
'glossaryid IN ('.$glossarylist.') AND usedynalink != 0', '',
|
|
'id,glossaryid,name AS concept, '.
|
|
'1 AS casesensitive, 1 AS category, 1 AS fullmatch');
|
|
|
|
$aliases = get_records_sql('SELECT ga.id, ge.glossaryid, ga.alias as concept, ge.concept as originalconcept,
|
|
casesensitive, 0 AS category, fullmatch
|
|
FROM '.$CFG->prefix.'glossary_alias ga,
|
|
'.$CFG->prefix.'glossary_entries ge
|
|
WHERE ga.entryid = ge.id
|
|
AND ge.glossaryid IN ('.$glossarylist.')
|
|
AND ge.usedynalink != 0
|
|
AND ge.approved != 0
|
|
AND ge.concept != \'\' ');
|
|
|
|
|
|
/// Combine them into one big list
|
|
if ($entries and $categories) {
|
|
$concepts = array_merge($entries, $categories);
|
|
} else if ($categories) {
|
|
$concepts = $categories;
|
|
} else if ($entries) {
|
|
$concepts = $entries;
|
|
}
|
|
|
|
if ($aliases) {
|
|
$concepts = array_merge($concepts, $aliases);
|
|
}
|
|
|
|
if (!empty($concepts)) {
|
|
foreach ($concepts as $key => $concept) {
|
|
/// Trim empty or unlinkable concepts
|
|
$currentconcept = trim(strip_tags($concept->concept));
|
|
if (empty($currentconcept)) {
|
|
unset($concepts[$key]);
|
|
continue;
|
|
} else {
|
|
$concepts[$key]->concept = $currentconcept;
|
|
}
|
|
|
|
/// Rule out any small integers. See bug 1446
|
|
$currentint = intval($currentconcept);
|
|
if ($currentint && (strval($currentint) == $currentconcept) && $currentint < 1000) {
|
|
unset($concepts[$key]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (empty($concepts)) {
|
|
$nothingtodo = true;
|
|
return $text;
|
|
}
|
|
|
|
usort($concepts, 'glossary_sort_entries_by_length');
|
|
|
|
$strcategory = get_string('category', 'glossary');
|
|
|
|
|
|
/// Loop through all the concepts, setting up our data structure for the filter
|
|
|
|
$conceptlist = array(); /// We will store all the concepts here
|
|
|
|
foreach ($concepts as $concept) {
|
|
|
|
$glossaryname = $glossaries[$concept->glossaryid];
|
|
|
|
if ($concept->category) { // Link to a category
|
|
$title = strip_tags($glossaryname.': '.$strcategory.' '.$concept->concept);
|
|
$href_tag_begin = '<a class="glossary autolink glossaryid'.$concept->glossaryid.'" title="'.$title.'" '.
|
|
'href="'.$CFG->wwwroot.'/mod/glossary/view.php?g='.$concept->glossaryid.
|
|
'&mode=cat&hook='.$concept->id.'">';
|
|
} else {
|
|
if (!empty($concept->originalconcept)) { // We are dealing with an alias (so show original)
|
|
$encodedconcept = urlencode($concept->originalconcept);
|
|
$title = str_replace('"', "'", strip_tags($glossaryname.': '.$concept->originalconcept));
|
|
} else {
|
|
$encodedconcept = urlencode($concept->concept);
|
|
$title = str_replace('"', "'", strip_tags($glossaryname.': '.$concept->concept));
|
|
}
|
|
$href_tag_begin = '<a class="glossary autolink glossaryid'.$concept->glossaryid.'" title="'.$title.'" '.
|
|
'href="'.$CFG->wwwroot.'/mod/glossary/showentry.php?courseid='.$courseid.
|
|
'&concept='.$encodedconcept.'" '.
|
|
'onclick="return openpopup(\'/mod/glossary/showentry.php?courseid='.$courseid.
|
|
'\&concept='.$encodedconcept.'\', \'entry\', '.
|
|
'\'menubar=0,location=0,scrollbars,resizable,width=600,height=450\', 0);">';
|
|
}
|
|
|
|
|
|
$conceptlist[] = new filterobject($concept->concept, $href_tag_begin, '</a>',
|
|
$concept->casesensitive, $concept->fullmatch);
|
|
}
|
|
|
|
$conceptlist = filter_remove_duplicates($conceptlist);
|
|
}
|
|
|
|
return filter_phrases($text, $conceptlist); // Actually search for concepts!
|
|
}
|
|
|
|
|
|
function glossary_sort_entries_by_length ($entry0, $entry1) {
|
|
$len0 = strlen($entry0->concept);
|
|
$len1 = strlen($entry1->concept);
|
|
|
|
if ($len0 < $len1) {
|
|
return 1;
|
|
} else if ($len0 > $len1) {
|
|
return -1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
?>
|