hook_cron_post_execute_function.html 264 B

123456789
  1. <p>The hook_cron_post_execute_FUNCTION(&$hook) is invoked just after running the cron function.</p>
  2. <h3>Example</h3>
  3. <p>Log that node_cron is done</p>
  4. <pre>
  5. function hook_cron_post_execute_node_cron($function, &$hook) {
  6. error_log('node_cron is done');
  7. }
  8. </pre>