You are here

function _token_core_supported_modules in Token 7

Same name and namespace in other branches
  1. 8 token.module \_token_core_supported_modules()
  2. 6 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 47
Enhances the token API in core: adds a browseable UI, missing tokens, etc.

Code

function _token_core_supported_modules() {
  return array(
    'book',
    'field',
    'menu',
    'profile',
  );
}