0byt3m1n1
Path:
/
home
/
kassiope
/
OLD
/
00-OLD
/
administrator
/
components
/
com_phocagallery
/
tables
/
[
Home
]
File: phocagallerycomments.php
<?php /* * @package Joomla 1.5 * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * * @component Phoca Component * @copyright Copyright (C) Jan Pavelka www.phoca.cz * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL */ defined('_JEXEC') or die('Restricted access'); jimport('joomla.filter.input'); class TablePhocaGallerycomments extends JTable { var $id = null; var $catid = null; var $userid = null; var $date = null; var $title = null; var $comment = null; var $published = null; var $checked_out = 0; var $checked_out_time = 0; var $ordering = null; var $params = null; function __construct(& $db) { parent::__construct('#__phocagallery_comments', 'id', $db); } } ?>