Your IP : 216.73.216.229


Current Path : /home/jeromecohp/www/libraries/techjoomla/media/tables/
Upload File :
Current File : /home/jeromecohp/www/libraries/techjoomla/media/tables/files.php

<?php
/**
 * @package     Techjoomla.Libraries
 * @subpackage  TjMedia
 *
 * @author      Techjoomla <extensions@techjoomla.com>
 * @copyright   Copyright (C) 2009 - 2019 Techjoomla. All rights reserved.
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

defined('_JEXEC') or die;

/**
 * TJMediaTableFiles class
 *
 * @since  1.0.0
 */
class TJMediaTableFiles extends JTable
{
	/**
	 * Constructor
	 *
	 * @param   JDatabaseDriver  &$db  Database object
	 *
	 * @since  1.0.0
	 */
	public function __construct(&$db)
	{
		parent::__construct('#__tj_media_files', 'id', $db);
	}
}