You are here

function _alphabar_instruction_default in Glossary 5.2

Same name and namespace in other branches
  1. 6 glossary.module \_alphabar_instruction_default()
  2. 7 glossary.module \_alphabar_instruction_default()
2 calls to _alphabar_instruction_default()
glossary_alphabet_form in ./glossary.module
This is the form for the getting the user's alphabet for the alphabar.
_glossary_alphabar in ./glossary.module

File

./glossary.module, line 1803
Glossary terms will be automatically marked with links to their descriptions.

Code

function _alphabar_instruction_default() {
  if (variable_get('glossary_page_per_letter', FALSE)) {
    return t('Click one of the letters above to be taken to a page of all terms beginning with that letter.');
  }
  else {
    return t('Click one of the letters above to advance the page to terms beginning with that letter.');
  }
}