function nodewords_token_list in Nodewords: D6 Meta Tags 5
Implementation of hook_token_list().
File
- ./
nodewords.module, line 80 - Assign META tags to nodes, vocabularies, terms and pages.
Code
function nodewords_token_list($type = 'all') {
$tokens = array();
if ($type == 'node' || $type == 'all') {
$tokens['node']['meta-keywords'] = t("The meta keywords");
$tokens['node']['meta-description'] = t("The meta description");
}
return $tokens;
}