# firebox/3.1.13/Inc/Core/API/Manager.php

FireBox – WooCommerce Popup Builder, Exit Intent Popup, Email Optin &amp; Cart Abandonment, version 3.1.13. 47 lines.

- Page: https://pluginprobe.com/plugins/firebox/3.1.13/code/Inc/Core/API/Manager.php
- Raw: https://pluginprobe.com/plugins/firebox/3.1.13/raw/Inc/Core/API/Manager.php
- Modified: 2026-09-07T07:54:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/firebox/3.1.13/code/Inc/Core/API/Manager.php#L10-L20`.

```php
<?php
/**
 * @package         FireBox
 * @version         3.1.13
 * 
 * @author          FirePlugins <info@fireplugins.com>
 * @link            https://www.fireplugins.com
 * @copyright       Copyright © 2026 FirePlugins All Rights Reserved
 * @license         GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/

namespace FireBox\Core\API;

if (!defined('ABSPATH'))
{
	exit; // Exit if accessed directly.
}

class Manager
{
	/**
	 * Root Namespace of the API calls
	 * 
	 * @var  string
	 */
	const ROOT_NAMESPACE = 'firebox';

	/**
	 * REST base name.
	 * 
	 * With empty REST base:
	 * /{ROOT_NAMESPACE}/v{VERSION}/{ENDPOINT}
	 * 
	 * With valid REST base:
	 * /{ROOT_NAMESPACE}/v{VERSION}/{REST_BASE}/{ENDPOINT}
	 * 
	 * @var  string
	 */
	const REST_BASE = '';

	/**
	 * Version of API
	 * 
	 * @var  string
	 */
	const VERSION = '1';
}
```
