Constants.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Hostinger\WpHelper; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | class Constants |
| 8 | { |
| 9 | public const TOKEN_HEADER = 'X-Hpanel-Order-Token'; |
| 10 | public const DOMAIN_HEADER = 'X-Hpanel-Domain'; |
| 11 | public const HOSTINGER_REST_URI = 'https://rest-hosting.hostinger.com'; |
| 12 | public const CONFIG_PATH = ABSPATH . '.private/config.json'; |
| 13 | public const SITE_URL_OVERRIDE_CONST = 'HOSTINGER_SITE_URL_OVERRIDE'; |
| 14 | public const API_TOKEN_OVERRIDE_CONST = 'HOSTINGER_API_TOKEN_OVERRIDE'; |
| 15 | } |
| 16 |