Your IP : 216.73.216.224


Current Path : /var/www/html/administrator/components/com_jdonation/table/
Upload File :
Current File : /var/www/html/administrator/components/com_jdonation/table/plugin.php

<?php
use Joomla\CMS\Table\Table;
/**
 * @version        5.6.0
 * @package        Joomla
 * @subpackage     Joom Donation
 * @author         Tuan Pham Ngoc
 * @copyright      Copyright (C) 2009 - 2019 Ossolution Team
 * @license        GNU/GPL, see LICENSE.php
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();

class DonationTablePlugin extends Table
{

	/**
	 * Constructor
	 *
	 * @param object Database connector object
	 *
	 */
	function __construct($db)
	{
		parent::__construct('#__jd_payment_plugins', 'id', $db);
	}
}