Your IP : 216.73.216.193


Current Path : /home/cbequiperp/www/administrator/components/com_flexicontent/tables/
Upload File :
Current File : /home/cbequiperp/www/administrator/components/com_flexicontent/tables/flexicontent_items_rating.php

<?php
/**
 * @version 1.5 stable $Id: flexicontent_items_rating.php 171 2010-03-20 00:44:02Z emmanuel.danan $
 * @package Joomla
 * @subpackage FLEXIcontent
 * @copyright (C) 2009 Emmanuel Danan - www.vistamedia.fr
 * @license GNU/GPL v2
 * 
 * FLEXIcontent is a derivative work of the excellent QuickFAQ component
 * @copyright (C) 2008 Christoph Lukes
 * see www.schlu.net for more information
 *
 * FLEXIcontent is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

defined('_JEXEC') or die('Restricted access');

/**
 * FLEXIcontent table class
 *
 * @package Joomla
 * @subpackage FLEXIcontent
 * @since 1.0
 */
class flexicontent_items_rating extends JTable
{
	/**
	 * Primary Key
	 * Foreign Key to content table
	 * @var int
	 */
	var $content_id 		= null;
	/** @var int */
	var $rating_sum			= null;
	/** @var int */
	var $rating_count		= null;
	/** @var string */
	var $lastip				= null;

	function flexicontent_items_rating(& $db) {
		parent::__construct('#__content_rating', 'content_id', $db);
	}
	
	// overloaded check function
	function check()
	{		
		return true;
	}
}
?>