Constants.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WhatsappScoped\YayCommerce\AdminShell\Support; |
| 4 | |
| 5 | \defined('ABSPATH') || exit; |
| 6 | /** |
| 7 | * Package-level constants with defined()-guards so individual plugins |
| 8 | * that define their own copy (race condition) take precedence. |
| 9 | */ |
| 10 | if (!\defined('YAYCOMMERCE_SELLER_SITE_URL')) { |
| 11 | \define('YAYCOMMERCE_SELLER_SITE_URL', 'https://yaycommerce.com/'); |
| 12 | } |
| 13 |