function system_hook_info

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/system/system.module \system_hook_info()

Implementation of hook_hook_info().

Archivo

drupal-6.x/modules/system/system.module, line 1340
Configuration system that lets administrators modify the workings of the site.

Código

function system_hook_info() {
  return array(
    'system' => array(
      'cron' => array(
        'run' => array(
          'runs when' => t('When cron runs'),
        ),
      ),
    ),
  );
}