Changes between Version 9 and Version 10 of Drupal HowTo Write Cron Tasks for CiviCRM
- Timestamp:
- 06/02/14 11:43:55 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Drupal HowTo Write Cron Tasks for CiviCRM
v9 v10 75 75 * The start() method should be called before any processing occurs. 76 76 * The end() method should *always* be called after processing. Therefore, in the example all processing is placed in a try block with the end() method called from the matching finally block. 77 78 === Config Usage 79