function _nodewords_get_builtin_function in Nodewords: D6 Meta Tags 5
Create the correct function name to call for builtin tags.
2 calls to _nodewords_get_builtin_function()
- nodewords_nodewords in ./
nodewords.module - Implementation of hook_nodewords().
- _nodewords_form in ./
nodewords.module - Create a form - returns a $form variable
File
- ./
nodewords.module, line 1050 - Assign META tags to nodes, vocabularies, terms and pages.
Code
function _nodewords_get_builtin_function($tag, $name) {
return 'nodewords_' . strtr(strtolower($tag), '.-', '__') . '_' . $name;
}