<?php
/**
* @version $Id: categories.php
* @package Joomla
* @copyright Copyright (C) 2010 - 2010 Pablo Cárcaba. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*/
defined( '_JEXEC' ) or die( 'Restricted access' );
class TableCategories extends JTable{
var $id=null;
var $description=null;
var $genre=null;
function __construct(&$db){
parent::__construct('#__gcd_categories','id',$db);
}
}
?>