| Current Path : /var/www/html/administrator/components/com_jdonation/table/ |
| Current File : /var/www/html/administrator/components/com_jdonation/table/fieldvalue.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 DonationTableFieldvalue extends Table
{
/**
* Constructor
*
* @param object Database connector object
*
*/
function __construct($db)
{
parent::__construct('#__jd_field_value', 'id', $db);
}
}