hook_daily.html in Ultimate Cron 8
Same filename and directory in other branches
File
help/hook_daily.htmlView source
If you just want a cron job that runs once per day by default, you can use hook_daily().
<h3>Example</h3>
<pre>
// Easy-hook, uses rule: 0 0 * * *
function mymodule_daily() {
// Do some stuff
}
</pre>