mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
10 lines
240 B
PHP
10 lines
240 B
PHP
<?php
|
|
if (!defined('EP_PAGES')) {
|
|
define('EP_PAGES', 4096);
|
|
}
|
|
if (!defined('MONTH_IN_SECONDS')) {
|
|
define('MONTH_IN_SECONDS', 30 * DAY_IN_SECONDS);
|
|
}
|
|
if (!defined('HOUR_IN_SECONDS')) {
|
|
define('HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS);
|
|
}
|