system_hook_info
- Versions
- 6 – 7
system_hook_info()
Implementation of hook_hook_info().
Code
modules/system/system.module, line 1296
<?php
function system_hook_info() {
return array(
'system' => array(
'cron' => array(
'run' => array(
'runs when' => t('When cron runs'),
),
),
),
);
}
?>Login or register to post comments 