19 lines
569 B
PHP
19 lines
569 B
PHP
<?php
|
|
/* @package Joomla
|
|
* @copyright Copyright (C) Open Source Matters. All rights reserved.
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
|
|
* @extension Phoca Extension
|
|
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
|
|
*/
|
|
defined('_JEXEC') or die('Restricted access');
|
|
use Joomla\CMS\Table\Table;
|
|
jimport('joomla.filter.input');
|
|
|
|
class TablePhocaDownloadLogging extends Table
|
|
{
|
|
function __construct(& $db) {
|
|
parent::__construct('#__phocadownload_logging', 'id', $db);
|
|
}
|
|
}
|
|
?>
|