index.php 611 B

1234567891011121314151617181920
  1. <?php
  2. define('BASE_ROOT_PATH',str_replace('/crontab','',dirname(__FILE__)));
  3. define('BASE_PATH',BASE_ROOT_PATH . '/crontab');
  4. define('BASE_DATA_PATH',BASE_ROOT_PATH . '/data');
  5. define('APP_ID','crontab');
  6. require_once(BASE_ROOT_PATH . '/other/config.ini.php');
  7. require_once(BASE_ROOT_PATH . '/extend/queue.php');
  8. require_once(BASE_ROOT_PATH . '/extend/queue.logic.php');
  9. require_once(BASE_ROOT_PATH . '/extend/log.php');
  10. require_once(BASE_ROOT_PATH . '/extend/http.php');
  11. Log::record("Crontab startHandling something....",Log::DEBUG);
  12. $logic_queue = new queue_logic();
  13. $logic_queue->UpdateAllBoxState();