hook_weekly.html 206 B

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