Glossary helps newbies understand the jargon which always crops up when specialists talk about a topic. Doctors discuss CBC and EKG and CCs. Web developers keep talking about CSS, P2P, XSLT, etc. This is all intimidating for newbies.
The Glossary module scans posts for glossary terms (and their synonyms) in the body. If found, the glossary indicator is inserted after the term, or the term is turned into an indicator link depending on the settings. By hovering over the indicator, users may learn the definition of that term. Clicking leads the user to that term presented within the whole glossary.
Glossary terms are managed as vocabularies within the taxonomy.module. To get started with glossary, create a new vocabulary on the !taxonomy_admin page. The vocabulary need not be associated with any modules, although you can add detailed description to terms by attaching (story or other type of) nodes to them. Add a few terms to the vocabulary. The term title should be the glossary entry and the description should be its definition. You can make use of the hierarchy, synonym, and related terms features. These features impact the display of the glossary when viewed in an overview.
Next, you have to setup the input formats you want to use the glossary with. At the !input_formats page select an input format to configure. Select the Glossary filter checkbox and press Save configuration. Now select the configure filters tab and select the vocabulary and apply other settings.
You can see how a vocabulary would function as a glossary by going to the !glossaries page and selecting the vocabulary to view.
Administration of glossary requires %permissions permissions.
', array('%permissions' => join(', ', array(t('administer taxonomy'), t('access administration pages'), t('administer filters'))), '!taxonomy_admin' => l(t('administer') .' » '. t('content') .' » '. t('categories'), 'admin/content/taxonomy', array(), null, null, false, true), '!input_formats' => l(t('administer') .' » '. t('site configuration') .' » '. t('Glossary'), 'admin/settings/glossary', array(), null, null, false, true), '!glossaries' => l(t('glossaries'), 'glossary'))); break; case 'admin/settings/glossary': return ''. t('This page and its tabs allow you to control how the Glossary module functions') .'
'; break; case 'admin/modules#description': return t('Maintain a glossary on your site.'); break; case 'filter#long-tip': case 'filter#short-tip': return t('Glossary terms will be automatically marked with links to their descriptions'); } } /** * Implementation of hook_block(). */ function glossary_block($op = 'list', $delta = 0, $edit = array()) { if ($op == 'list') { $blocks = array(); $blocks[0]['info'] = t('Search for glossary terms'); return $blocks; } else if ($op == 'view') { if ($delta == 0) { $block['subject'] = t('Search Glossary'); $block['content'] = drupal_get_form('glossary_search_form'); } return $block; } } /** * Implementation of hook_menu(). * * This is also the place where we add a link to the CSS sheet. * We need the glossary filter to be a caching filter, because it is * relatively slow. If content is cached, no calls at all are made to * this module for that content. That means we can not detect when the * CSS sheet is actually needed. Therefore, we simply link it in always. * This should really happen always, so we do it when $may_cache == false. */ function glossary_menu($may_cache) { if ($may_cache) { $items[] = array( 'path' => 'glossary/search', 'title' => t('Glossary'), 'callback' => 'glossary_search_results', 'access' => user_access('access content'), 'type' => MENU_CALLBACK, ); $items[] = array( 'path' => 'glossary', 'title' => t('Glossary'), 'callback' => 'glossary_page', 'access' => user_access('access content'), 'type' => MENU_SUGGESTED_ITEM, ); $items[] = array( 'path' => 'admin/settings/glossary', 'title' => t('Glossary'), 'callback' => 'glossary_settings_page', 'description' => t('Select how you want the Glossary module to behave.'), 'access' => user_access('administer filters'), 'type' => MENU_NORMAL_ITEM, ); $items[] = array( 'path' => 'admin/settings/glossary/general', 'title' => t('General'), 'description' => t('General settings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('glossary_general_settings_form'), 'access' => user_access('administer filters'), 'type' => MENU_DEFAULT_LOCAL_TASK, ); $result = db_query('SELECT format, name FROM {filter_formats}'); while ($filter = db_fetch_array($result)) { $items[] = array( 'path' => 'admin/settings/glossary/filter'. $filter['format'], 'title' => $filter['name'], 'access' => user_access('administer filters'), 'callback' => 'drupal_get_form', 'callback arguments' => array('glossary_filter_form', $filter['format']), 'description' => t('Settings for the !name input format.', array('!name' => $filter['name'])), 'weight' => 2, 'type' => MENU_LOCAL_TASK, ); } } else { drupal_add_css(drupal_get_path('module', 'glossary') .'/glossary.css'); if (arg(2) ) { $items[] = array( 'path' => 'glossary/term/'. arg(2), 'title' => t('Glossary'), 'callback' => 'glossary_term', 'callback arguments' => array(arg(2)), 'access' => user_access('access content'), 'type' => MENU_CALLBACK, ); } } return $items; } function glossary_search_form($keys = '') { $form['#action'] = url('glossary/search'); $form['#attributes'] = array('class' => 'glossary search-form'); $form['keys'] = array( '#type' => 'textfield', '#title' => '', '#default_value' => $keys, '#size' => 20, '#maxlength' => 255, ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Search'), ); return $form; } function glossary_search_form_submit($form_id, $form_values) { $keys = trim($form_values['keys']); return "glossary/search/$keys"; } function glossary_search_results($keys = null) { $vids = _glossary_get_filter_vids(); $output = ''; $sql = "SELECT tid FROM {term_data} WHERE vid IN (%s) AND (description LIKE '%%%s%%' OR name LIKE '%%%s%%')"; $result = db_query($sql, implode(',', $vids), $keys, $keys); while ($row = db_fetch_object($result)) { $term = taxonomy_get_term($row->tid); $output .= theme('glossary_overview_item', $term); } return $output; } function theme_glossary_search_form($form) { return ''. t('The Glossary module is not enabled for this input format. Change the settings.', array('!url' => url('admin/settings/filters/'. $format))) .'
'; } if ($filter['cache']) { $cache_msg = t('This filter may be cached.'); // Is there anything in the cache now? // We can't use cache_get because we would need the md5 hash of the text. $cached_content = db_result(db_query("SELECT COUNT(cid) FROM {cache_filter} WHERE cid LIKE ('%d:%%')", $format)); if ($cached_content == 0) { $cache_exist = false; } else { $cache_exist = true; $cache_msg .= ' '. t('There is currently cached data for this input format.'); $dest = drupal_get_destination(); $cache_msg .= ' '. t('Clear it now.', array('!url' => url('glossary/clearcache', $dest))); } $cache_lifetime = variable_get('cache_lifetime', 0); if ($cache_lifetime) { $cache_msg .= ' '. t('You are using a minimum cache lifetime of !life.', array('!life' => format_interval($cache_lifetime, 1))); } else { $cache_msg .= ' '. t('You do not have a minimum cache lifetime.'); } } else { $cache_msg = t('This filter may not be cached.'); } $form['format'] = array( '#type' => 'value', '#value' => $format, ); $form['need_to_clear_cache'] = array( '#type' => 'hidden', '#value' => false, ); $form['indicator'] = array( '#type' => 'fieldset', '#title' => t('Indicator settings'), '#collapsible' => true, '#collapsed' => false, '#description' => $enabled_msg . $cache_msg, ); $form['indicator']["glossary_replace_$format"] = array( '#type' => 'select', '#title' => t('Term Indicator'), '#default_value' => variable_get("glossary_replace_$format", 'superscript'), '#options' => array( 'superscript' => t('superscript'), 'icon' => t('icon'), 'acronym link' => t('replace with acronym link'), ), '#description' => t('Display terms using either a superscript formatted link, an icon, or an <acronym> tag.'), '#validate' => array('glossary_indicator_intercept' => array()), ); $form['indicator']["glossary_superscript_$format"] = array( '#type' => 'textfield', '#title' => t('Superscript'), '#default_value' => variable_get("glossary_superscript_$format", 'i'), '#size' => 15, '#maxlength' => 255, '#description' => t('If you choose !superscript above, enter the superscript text.', array('!superscript' => ''. t('superscript') .'')), '#validate' => array('glossary_indicator_intercept' => array()), ); $mypath = '/'. drupal_get_path('module', 'glossary'); $form['indicator']["glossary_icon_$format"] = array( '#type' => 'textfield', '#title' => t('Glossary Icon URL'), '#default_value' => variable_get("glossary_icon_$format", $mypath .'/glossary.gif'), '#size' => 50, '#maxlength' => 255, '#description' => t('If you choose !icon above, enter the URL of the glossary icon relative to the root of your Drupal site.', array('!icon' => ''. t('icon') .'')), '#validate' => array('glossary_indicator_intercept' => array()), ); // Update Button $form['save']['attach'] = array( '#type' => 'submit', '#value' => t('Save configuration'), '#weight' => 5, ); return $form; } // This function checks to see if a value has changed; if so we need to clear the filter cache. function glossary_indicator_intercept($form) { if ($form['#value'] != $form['#default_value']) { variable_set('glossary_need_to_clear_cache', true); }; } function glossary_filter_form_submit($form_id, $form_values) { $need_to_clear_cache = variable_get('glossary_need_to_clear_cache', false); if ($need_to_clear_cache) { _glossary_clear_cache(null, $object->vid); } $format = $form_values['format']; $replace_name = "glossary_replace_$format"; $superscript_name = "glossary_superscript_$format"; $icon_name = "glossary_icon_$format"; variable_set($replace_name, $form_values[$replace_name]); variable_set($superscript_name, $form_values[$superscript_name]); variable_set($icon_name, $form_values[$icon_name]); return; } function glossary_filter_tips($delta, $format, $long = false) { return $long ? glossary_help('filter#long-tip') : glossary_help('filter#short-tip'); } function glossary_filter($op, $delta = 0, $format = -1, $text = "") { switch ($op) { case 'list': return array(0 => t('Glossary filter')); case 'description': return glossary_help('admin/modules#description'); case 'process': return _glossary_filter_process($format, $text); // case 'settings': // return _glossary_filter_settings($format); default: return $text; } } function glossary_taxonomy($op, $type, $object = null) { if ($object) { _glossary_clear_cache($object->vid); } } /** * Implementation of hook_user(). */ function glossary_user($type, $edit, $user) { switch ($type) { case 'form': // Note: this requires a setting. Do we also need to clear cache if selected? if (variable_get('glossary_disable_indicator', false)) { $form['content_glossary'] = array( '#type' => 'fieldset', '#title' => t('Glossary Indicators'), ); $form['content_glossary']['glossary_disable_indicator'] = array( '#type' => 'checkbox', '#title' => t('Disable Glossary indicators'), '#return_value' => 1, '#default_value' => $user->glossary_disable_indicator, '#description' => t('Check this box to disable the display of Glossary indicators.'), ); return $form; } break; } } function _glossary_filter_process($format, $text) { global $user; if ($user->glossary_disable_indicator) { return $text; } if (variable_get("glossary_vids_$format", 0)) { $text = ' '. $text .' '; $replace_mode = variable_get("glossary_replace_$format", 'superscript'); $absolute_link = variable_get("glossary_absolute_$format", false); $terms = _glossary_get_terms($format); $vids = _glossary_get_filter_vids(); foreach ($terms as $term) { $term_title = $term->name .': '. strip_tags($term->description); if ($term->nodes > 0) { $linkto = "taxonomy/term/$term->tid"; } elseif (!empty($vids)) { $linkto = 'glossary/'. $term->vid; } else { $linkto = 'glossary/term/'. $term->tid; } $ins_before = $ins_after = ''; switch ($replace_mode) { case 'superscript': $ins_after = l(variable_get("glossary_superscript_$format", 'i'), $linkto, array('title' => $term_title, 'class' => 'glossary-indicator'), null, null, $absolute_link); break; case 'acronym link': $ins_before = ''; $ins_before .= ''; $ins_after = ''; break; default: $img = ""; $ins_after = l($img, $linkto, array('title' => $term_title, 'class' => 'glossary-icon'), null, null, $absolute_link, true); break; } // replace term and synonyms with the desired new HTML code foreach ($term->synonyms as $candidate) { $text = _glossary_insertlink($format, $text, $candidate, $ins_before, $ins_after); } } } return $text; } /** * Insert glossary links to $text after every $match that is not inside a link. * $ins_before is prepended to the matches, $_insafter is appended to them. * Match type and replace mode all depend on user settings. * * TODO: improve performance with not keeping *2.5 copies* of the string in memory: * $text - original * $newtext - transformed * $before . $this_match - for checking stuff */ function _glossary_insertlink($format, &$text, $match, $ins_before, $ins_after) { $findfunc = (variable_get("glossary_case_$format", "1") ? 'strpos' : 'stripos'); $next = $findfunc($text, $match); if ($next === false) { // no match at all return $text; } else { // at least one match $prevend = 0; $newtext = ''; $matchlen = strlen($match); $textlen = strlen($text); $replaceall = variable_get("glossary_replace_all_$format", 0); while ($next && ($next <= $textlen)) { // get parts of the match for further investigation $before = substr($text, 0, $next); $this_match = substr($text, $next, $matchlen); // see if we have a proper match or not $open = substr_count($before, '<'); $close = substr_count($before, '>'); $opena = substr_count($before, ''); $openacro = substr_count($before, ''); $proper_match = false; if ($opena <= $closea && $open <= $close && $openacro <= $closeacro) { // Not in an open link switch (variable_get("glossary_match_$format", 'b')) { case 'lr': // require word break left or right $proper_match = (_glossary_is_boundary($text {$next - 1}) || _glossary_is_boundary($text {$next + $matchlen})); break; case 'b': // require word break left and right $proper_match = (_glossary_is_boundary($text {$next - 1}) && _glossary_is_boundary($text {$next + $matchlen})); break; case 'l': // require word break left $proper_match = _glossary_is_boundary($text {$next - 1}); break; case 'r': // require word break right $proper_match = _glossary_is_boundary($text {$next + $matchlen}); break; case 's': // match any substring default: $proper_match = true; break; } } if ($proper_match) { // found match $newtext .= substr($text, $prevend, ($next - $prevend)) . $ins_before . $this_match . $ins_after; if ($replaceall == 0) { return $newtext . substr($text, $next + $matchlen); } } else { // not applicable match $newtext .= substr($text, $prevend, ($next - $prevend)) . $this_match; } // Step further in finding the next match $prevend = $next + $matchlen; $next = $findfunc($text, $match, $prevend); } // Append remaining part return $newtext . substr($text, $prevend); } } function glossary_page($vid = null, $letter = null) { $vids = _glossary_get_filter_vids(); $found = false; if (!$vid) { if (count($vids) == 1) { $vid = $vids[0]; $found = true; } } else { $found = array_search($vid, _glossary_get_filter_vids()); } if (!$vid || $found === false) { $breadcrumb = array(l(t('Home'), null)); drupal_set_title(t('Glossaries')); drupal_set_breadcrumb($breadcrumb); return _glossary_list(); } else { $voc = taxonomy_get_vocabulary($vid); $breadcrumb = array(l(t('Home'), null)); if (count($vids) > 1) { $breadcrumb[] = l(t('Glossaries'), 'glossary'); } drupal_set_title(ucwords($voc->name)); drupal_set_breadcrumb($breadcrumb); return glossary_overview($voc, $letter); } } function _glossary_alphabar($vid, &$tree) { $blocks = array(range('0', '9'), range('a', 'z')); $vids = _glossary_get_filter_vids(); $found_letters = array(); foreach ($tree as $key => $term) { if ($term->depth == 0) { $firstletter = strtolower($term->name[0]); if (! array_key_exists($firstletter, $found_letters)) { $found_letters[$firstletter] = 1; $tree[$key]->firstletter = $firstletter; } } } foreach ($blocks as $block) { $found = false; foreach ($block as $entry) { if (array_key_exists($entry, $found_letters)) { $found = true; break; } } if ($found) { foreach ($block as $entry) { if (! array_key_exists($entry, $found_letters)) { $found_letters[$entry] = 0; } } } } $output = '