# firebox/2.1.14/Inc/Core/Helpers/Form.php

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

- Page: https://pluginprobe.com/plugins/firebox/2.1.14/code/Inc/Core/Helpers/Form.php
- Raw: https://pluginprobe.com/plugins/firebox/2.1.14/raw/Inc/Core/Helpers/Form.php
- Modified: 2024-05-30T14:06:28+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/2.1.14/code/Inc/Core/Helpers/Form.php#L10-L20`.

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

namespace FireBox\Core\Helpers;

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

use FPFramework\Helpers\SearchDropdownHelper;

class Form extends \FPFramework\Helpers\SearchDropdownProviderHelper
{
	/**
	 * Class Name.
	 * 
	 * @var  string
	 */
	protected $class_name = 'Form';

	/**
	 * Provider prefix.
	 * 
	 * @var  string
	 */
	protected $provider_prefix = '\FireBox\Core\Helpers\DataProviders\\';

	/**
	 * Parses given data to a key, value, lang array
	 * 
	 * @param   array  $items
	 * 
	 * @return  array
	 */
	public static function parseData($items)
	{
		return $items;
	}

	/**
	 * Returns all forms.
	 * 
	 * @return  array
	 */
	public static function getForms()
	{
		return \FireBox\Core\Helpers\Form\Form::getParsedForms();
	}
}
```
