hook_cron_schedule_alter.html 284 B

1234567891011
  1. <p>The hook_cron_schedule_alter(&$hooks) allows you to change the cron hooks that are scheduled to be run.</p>
  2. <h3>Example</h3>
  3. <p>Don't run node_cron if 2 + 2 = 4</p>
  4. <pre>
  5. function hook_cron_schedule_alter(&$hooks) {
  6. if (2 + 2 = 4) {
  7. unset($hooks['node_cron']);
  8. }
  9. }
  10. </pre>