| Current Path : /home/cbequiperp/www/administrator/components/com_flexicontent/tables/ |
| Current File : /home/cbequiperp/www/administrator/components/com_flexicontent/tables/flexicontent_templates.php |
<?php
/**
* @package FLEXIcontent
* @version 3.3
*
* @author Emmanuel Danan, Georgios Papadakis, Yannick Berges, others, see contributor page
* @link https://flexicontent.org
* @copyright Copyright © 2018, FLEXIcontent team, All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\String\StringHelper;
require_once('flexicontent_basetable.php');
class flexicontent_templates extends flexicontent_basetable
{
// Non-table (private) properties
var $_record_name = 'template';
var $_title = 'template';
var $_alias = null;
var $_force_ascii_alias = false;
var $_allow_underscore = false;
public function __construct(& $db)
{
$this->_records_dbtbl = 'flexicontent_' . $this->_record_name . 's';
$this->_NAME = strtoupper($this->_record_name);
parent::__construct('#__' . $this->_records_dbtbl, 'id', $db);
}
// overloaded check function, todo more
public function check()
{
parent::check();
}
}