1 cron_example.module | cron_example_config_info() |
Implements hook_config_info().
Related topics
File
- modules/
examples/ cron_example/ cron_example.module, line 21 - Demonstrates use of the Cron API in Backdrop - hook_cron()
Code
function cron_example_config_info() {
$prefixes['cron_example.settings'] = array(
'label' => t('cron_example settings'),
'group' => t('Configuration'),
);
return $prefixes;
}