function _alphabar_instruction_default in Lexicon 6
2 calls to _alphabar_instruction_default()
File
- ./
lexicon.module, line 1292 - Lexicon is used to create lists of terms and definitions to use on a website and optionally mark them in the content with an indicator.
Code
function _alphabar_instruction_default() {
if (variable_get('lexicon_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.');
}
}