hook_yearly.html 289 B

123456789101112
  1. If you just want a cron job that runs once a year by default, you can use hook_yearly().
  2. <h3>Example</h3>
  3. <pre>
  4. // Easy-hook, uses rule: 0 0 1 1 *
  5. function mymodule_yearly() {
  6. // Do some stuff
  7. }
  8. </pre>
  9. P.S.: It's okay to laugh. The use case for this hook is very likely non-existent.