You are here

function _biblio_token_list in Bibliography Module 6.2

Parameters

string $type: (optional)

1 call to _biblio_token_list()
biblio_token_list in ./biblio.module

File

includes/biblio.tokens.inc, line 16

Code

function _biblio_token_list($type = 'all') {
  if ($type == 'node') {
    $tokens['node']['biblio_year'] = t("Biblio: Publication year");
    $tokens['node']['biblio_authors'] = t("Biblio: Authors");
    $tokens['node']['biblio_type_id'] = t("Biblio: Type ID (e.g.: 100)");
    $tokens['node']['biblio_type'] = t("Biblio: Type Name (e.g.: book)");
    $tokens['node']['biblio_citekey'] = t("Biblio: Cite Key often used in BibTex files");
    return $tokens;
  }
}