hook_cron_post_execute_function.html in Ultimate Cron 8
Same filename and directory in other branches
File
help/hook_cron_post_execute_function.htmlView 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>