<?php

define('DAEMON_SYNC_HISTORICAL_ORDERS', 'daemon_sync_hisorical_orders');
define('DAEMON_SYNC_INCREMENT_ORDERS', 'daemon_sync_increment_orders');
define('DAEMON_SYNC_ORDERS_STATUS', 'daemon_sync_orders_status');

$GLOBALS['DAEMON_LIST'] = array(
    DAEMON_SYNC_HISTORICAL_ORDERS   =>  'sync_historical_orders.php',
    DAEMON_SYNC_INCREMENT_ORDERS    =>  'sync_increment_orders.php',
    DAEMON_SYNC_ORDERS_STATUS       =>  'sync_orders_status.php',
);

$GLOBALS['DAEMON_NUMLIMIT'] = array(
    DAEMON_SYNC_HISTORICAL_ORDERS   =>  10,
    DAEMON_SYNC_INCREMENT_ORDERS    =>  1,
    DAEMON_SYNC_ORDERS_STATUS       =>  1,
);