# firebox/1.0.0/Inc/Core/Models/Box.php

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

- Page: https://pluginprobe.com/plugins/firebox/1.0.0/code/Inc/Core/Models/Box.php
- Raw: https://pluginprobe.com/plugins/firebox/1.0.0/raw/Inc/Core/Models/Box.php
- Modified: 2021-02-25T13:39:50+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/1.0.0/code/Inc/Core/Models/Box.php#L10-L20`.

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

namespace FireBox\Core\Models;

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

use FPFramework\Includes\DB;

class Box extends DB
{
	public function __construct()
	{
		$this->table_name  = 'posts';
		$this->primary_key = 'ID';
	}

	/**
	 * Get columns and formats 
	 *
	 * @return  array
	*/
	public function get_columns()
	{
		return array(
			'ID'		  => '%d',
			'post_author' => '%d',
			'post_status' => '%s',
			'post_type'	  => '%s'
		);
	}
}
```
