| 7 trigger_test.module | trigger_test_system_cron_conf_action($object, $context) |
Implement a configurable Drupal action.
2 string references to 'trigger_test_system_cron_conf_action'
File
- modules/
trigger/ tests/ trigger_test.module, line 89 - Mock module to aid in testing trigger.module.
Code
function trigger_test_system_cron_conf_action($object, $context) {
// Indicate successful execution by incrementing a persistent variable.
$value = variable_get('trigger_test_system_cron_conf_action', 0) + 1;
variable_set('trigger_test_system_cron_conf_action', $value);
}
Login or register to post comments