function _token_core_supported_modules in Token 6
Same name and namespace in other branches
- 8 token.module \_token_core_supported_modules()
- 7 token.module \_token_core_supported_modules()
Return an array of the core modules supported by token.module.
2 calls to _token_core_supported_modules()
- token_find_duplicate_tokens in ./
token.module - Find tokens that have been declared twice by different modules.
- token_include in ./
token.module - General function to include the files that token relies on for the real work.
File
- ./
token.module, line 40 - The Token API module.
Code
function _token_core_supported_modules() {
return array(
'node',
'user',
'taxonomy',
'comment',
'menu',
'book',
);
}