# firebox/1.0.7/Inc/Core/Tables/Boxlogdetails.php

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

- Page: https://pluginprobe.com/plugins/firebox/1.0.7/code/Inc/Core/Tables/Boxlogdetails.php
- Raw: https://pluginprobe.com/plugins/firebox/1.0.7/raw/Inc/Core/Tables/Boxlogdetails.php
- Modified: 2021-11-25T12:05:14+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.7/code/Inc/Core/Tables/Boxlogdetails.php#L10-L20`.

```php
<?php
/**
 * @package         FireBox
 * @version         1.0.7 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\Tables;

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

use FPFramework\Includes\DB;

class Boxlogdetails extends DB
{
	public function __construct()
	{
		$this->table_name  = 'firebox_logs_details';
		$this->primary_key = 'id';
	}
	
	/**
	 * Get columns and formats 
	 *
	 * @return  array
	*/
	public function get_columns()
	{
		return [
			'id'		 => '%d',
			'log_id'	 => '%s',
			'event'		 => '%s',
			'params'	 => '%s',
			'date'		 => '%s',
		];
	}
}
```
