You are here

function biblio_get_allowed_tags in Bibliography Module 6.2

Same name and namespace in other branches
  1. 5 biblio.module \biblio_get_allowed_tags()
  2. 6 biblio.module \biblio_get_allowed_tags()
  3. 7 biblio.module \biblio_get_allowed_tags()
  4. 7.2 biblio.module \biblio_get_allowed_tags()

Return value

array An array of allowed HTML tags as values in array.

14 calls to biblio_get_allowed_tags()
biblio_block in ./biblio.module
Implements hook_block().
biblio_nodeapi in ./biblio.module
Implements hook_nodeapi().
biblio_preprocess_page in ./biblio.module
Implements hook_preprocess_page for page display with page.tpl.php.
biblio_style_ama in styles/biblio_style_ama.inc
biblio_style_apa in styles/biblio_style_apa.inc
Apply a bibliographic style to the node

... See full list

File

./biblio.module, line 2522
Main file for Drupal module biblio.

Code

function biblio_get_allowed_tags() {
  return array(
    'a',
    'b',
    'i',
    'u',
    'sub',
    'sup',
    'span',
  );
}