Your IP : 216.73.216.147


Current Path : /home/lejardintz/www/administrator/components/com_komento/tables/
Upload File :
Current File : /home/lejardintz/www/administrator/components/com_komento/tables/parent.php

<?php
/**
* @package		Komento
* @copyright	Copyright (C) 2010 Stack Ideas Private Limited. All rights reserved.
* @license		GNU/GPL, see LICENSE.php
* Komento is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Restricted access');

class KomentoParentTable extends JTable
{
	function __construct( $table , $key , &$db )
	{
		parent::__construct( $table , $key , $db );
	}

	/**
	 * Tired of fixing conflicts with JTable::getInstance . We'll overload their method here.
	 *
	 * @param   string  $type    The type (name) of the JTable class to get an instance of.
	 * @param   string  $prefix  An optional prefix for the table class name.
	 * @param   array   $config  An optional array of configuration values for the JTable object.
	 *
	 * @return  mixed    A JTable object if found or boolean false if one could not be found.
	 *
	 * @link    http://docs.joomla.org/JTable/getInstance
	 * @since   11.1
	 */
	public static function getInstance($type, $prefix = 'JTable', $config = array())
	{
		// Sanitize and prepare the table class name.
		$type       = preg_replace('/[^A-Z0-9_\.-]/i', '', $type);
		$tableClass = 'KomentoTable' . ucfirst($type);

		// Only try to load the class if it doesn't already exist.
		if (!class_exists($tableClass))
		{
			// Search for the class file in the JTable include paths.
			$path 	= dirname( __FILE__ ) . '/' . strtolower( $type ) . '.php';

			// Import the class file.
			include_once $path;
		}

		$table 	= parent::getInstance( $type , 'KomentoTable' , $config );

		return $table;
	}

	public function bind( $src, $ignore = array() )
	{
		if( !is_object( $src ) && !is_array( $src ) )
		{
			$src 	= new stdClass();
		}

		return parent::bind( $src, $ignore );
	}
}