You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
630 B
17 lines
630 B
<?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 => 2,
|
|
DAEMON_SYNC_ORDERS_STATUS => 1,
|
|
);
|