You are here

hook_cron_post_execute_function.html in Ultimate Cron 7

File

help/hook_cron_post_execute_function.html
View source
<p>The hook_cron_post_execute_FUNCTION(&$hook) is invoked just after running the cron function.</p>

<h3>Example</h3>
<p>Log that node_cron is done</p>
<pre>
function hook_cron_post_execute_node_cron($function, &$hook) {
  error_log('node_cron is done');
}
</pre>