function _token_core_supported_modules in Token 8
Same name and namespace in other branches
- 6 token.module \_token_core_supported_modules()
- 7 token.module \_token_core_supported_modules()
Return an array of the core modules supported by token.module.
1 call to _token_core_supported_modules()
- token_module_implements_alter in ./
token.module - Implements hook_module_implements_alter().
File
- ./
token.module, line 48 - Enhances the token API in core: adds a browseable UI, missing tokens, etc.
Code
function _token_core_supported_modules() {
return [
'book',
'field',
'menu_ui',
];
}