function _alphabar_instruction_default in Glossary 7
Same name and namespace in other branches
- 5.2 glossary.module \_alphabar_instruction_default()
- 6 glossary.module \_alphabar_instruction_default()
2 calls to _alphabar_instruction_default()
- glossary_alphabet_form in ./
glossary.admin.inc - This is the form for the getting the user's alphabet for the alphabar. @todo Please document this function.
- _glossary_alphabar in ./
glossary.module
File
- ./
glossary.module, line 1309 - 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.');
}
}