Files
Pichome/core/class/table/table_pichome_downloads.php
2024-01-31 01:00:33 +08:00

18 lines
370 B
PHP

<?php
if (!defined('IN_OAOOA')) {
exit('Access Denied');
}
class table_pichome_downloads extends dzz_table
{
public function __construct()
{
$this->_table = 'pichome_downloads';
$this->_pk = 'id';
$this->_pre_cache_key = 'pichome_downloads';
$this->_cache_ttl = 3600;
parent::__construct();
}
}