system_hook_info

6 system.module system_hook_info()
7 system.module system_hook_info()
8 system.module system_hook_info()

Implementation of hook_hook_info().

File

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

Code

function system_hook_info() {
  return array(
    'system' => array(
      'cron' => array(
        'run' => array(
          'runs when' => t('When cron runs'),
        ),
      ),
    ),
  );
}
Login or register to post comments