Your IP : 216.73.216.85


Current Path : /home/smartconb/www/armencom33/plugins/system/falangdriver/drivers/
Upload File :
Current File : /home/smartconb/www/armencom33/plugins/system/falangdriver/drivers/pdomysqlx.php

<?php
/**
 * @package     Falang for Joomla!
 * @author      Stéphane Bouey <stephane.bouey@faboba.com> - http://www.faboba.com
 * @license     GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 * @copyright   Copyright (C) 2010-2017. Faboba.com All rights reserved.
 */

// No direct access to this file
defined('_JEXEC') or die;

/**
 * MySQLi FaLang database driver
 *
 * @package     Joomla.Platform
 * @subpackage  Database
 * @see         http://php.net/manual/en/book.mysqli.php
 * @since       11.1
 */


class JOverrideDatabase extends JDatabaseDriverMysqli
{
	function __construct($options){
		JFactory::getApplication()->enqueueMessage(JText::_('PLG_SYSTEM_FALANGDRIVER_PDO_NOT_SUPPORTED'));
		parent::__construct($options);
	}
}