system_hook_info

system_hook_info()

Implements hook_hook_info().

File

core/modules/system/system.module, line 233
Configuration system that lets administrators modify the workings of the site.

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function system_hook_info() {
  $hooks['token_info'] = array(
    'group' => 'tokens',
  );
  $hooks['token_info_alter'] = array(
    'group' => 'tokens',
  );
  $hooks['tokens'] = array(
    'group' => 'tokens',
  );
  $hooks['tokens_alter'] = array(
    'group' => 'tokens',
  );
 
  return $hooks;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.