| Current Path : /var/www/html/administrator/components/com_rsfirewall/tables/ |
| Current File : /var/www/html/administrator/components/com_rsfirewall/tables/hashes.php |
<?php
/*
* @package RSFirewall!
* @copyright (c) 2009 - 2024 RSJoomla!
* @link https://www.rsjoomla.com/joomla-extensions/joomla-security.html
* @license GNU General Public License https://www.gnu.org/licenses/gpl-3.0.en.html
*/
\defined('_JEXEC') or die;
use Joomla\CMS\Table\Table;
class RsfirewallTableHashes extends Table
{
/**
* Primary Key
*
* @var int
*/
public $id = null;
public $file = null;
public $hash = null;
public $type = null;
public $flag = null;
public $date = null;
/**
* Constructor
*
* @param object Database connector object
*/
public function __construct(& $db)
{
parent::__construct('#__rsfirewall_hashes', 'id', $db);
}
}