array( 'type' => 'system', 'description' => t('Cron test action'), 'configurable' => FALSE, 'hooks' => array( 'cron' => array('run'), ), ), ); } /** * Action fired during the "cron run" trigger test. */ function trigger_test_system_cron_action() { // Indicate successful execution by setting a persistent variable. variable_set('trigger_test_system_cron_action', TRUE); }