You are here

function biblio_token_list in Bibliography Module 6

Same name and namespace in other branches
  1. 5 biblio.module \biblio_token_list()
  2. 6.2 biblio.module \biblio_token_list()

File

./biblio.module, line 2342

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;
  }
}