# firebox/3.1.6/Inc/Core/Fields/Integrations.php

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

- Page: https://pluginprobe.com/plugins/firebox/3.1.6/code/Inc/Core/Fields/Integrations.php
- Raw: https://pluginprobe.com/plugins/firebox/3.1.6/raw/Inc/Core/Fields/Integrations.php
- Modified: 2026-04-23T09:41:30+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.6/code/Inc/Core/Fields/Integrations.php#L10-L20`.

```php
<?php
/**
 * @package         FireBox
 * @version         3.1.6 Free
 *
 * @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\Fields;

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

use FPFramework\Base\Field;
use FPFramework\Libs\Registry;

class Integrations extends Field
{
	/**
	 * Set specific field options.
	 *
	 * @param   array  $options
	 *
	 * @return  void
	 */
	protected function setFieldOptions($options)
	{
		$options = new Registry($options);

		$this->field_options = [
			'render_group' => false,
			'render_top' => false,
			'integrations' => $options->get('integrations', [])
		];
	}
}


```
