File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_gdpr/tables
Viewing File: /home/astoriaah/www/administrator/components/com_gdpr/tables/cookiedescriptions.php
<?php // namespace administrator\components\com_gdpr\tables; /** * @package GDPR::COOKIEDESCRIPTIONS::administrator::components::com_gdpr * @subpackage tables * @author Joomla! Extensions Store * @copyright (C) 2018 - Joomla! Extensions Store * @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html */ defined ( '_JEXEC' ) or die ( 'Restricted access' ); jimport ( 'joomla.application.component.model' ); /** * Cookie descriptions ORM * * @package GDPR::RECORD::administrator::components::com_gdpr * @subpackage tables * @since 1.6 */ class TableCookiedescriptions extends JTable { /** * @public int Primary key */ public $id = null; /** * @public string */ public $cookie = null; /** * @var int */ public $category = null; /** * @public string */ public $descriptionhtml = null; /** * @public string */ public $expiration = null; /** * @var int */ public $checked_out = 0; /** * @var datetime */ public $checked_out_time = 0; /** * @var int */ public $published = 1; /** * * @param * database A database connector object */ function __construct(&$db) { parent::__construct ( '#__gdpr_cookie_descriptions', 'id', $db ); } }