cron.php 343 B

12345678910
  1. <?php
  2. /*
  3. * Simple Cron job
  4. */
  5. $GLOBALS['cron'][] = [
  6. 'class' => 'ShuckStop', // Class name of plugin (case-sensitive)
  7. 'enabled' => 'SHUCKSTOP-cron-run-enabled', // Config item for job enable
  8. 'schedule' => 'SHUCKSTOP-cron-run-schedule', // Config item for job schedule
  9. 'function' => '_shuckStopPluginRun', // Function to run during job
  10. ];