hook_daily.html 205 B

12345678910
  1. If you just want a cron job that runs once per day by default, you can use hook_daily().
  2. <h3>Example</h3>
  3. <pre>
  4. // Easy-hook, uses rule: 0 0 * * *
  5. function mymodule_daily() {
  6. // Do some stuff
  7. }
  8. </pre>