hook_hourly.html 208 B

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