芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/acancehyucatan.gob.mx/installation/src/Model/BaseInstallationModel.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Installation\Model; \defined('_JEXEC') or die; use Joomla\CMS\MVC\Factory\MVCFactoryInterface; use Joomla\CMS\MVC\Model\BaseDatabaseModel; /** * Base Model for the installation model classes * * @since 4.0.0 */ class BaseInstallationModel extends BaseDatabaseModel { /** * Constructor * * @param array $config An array of configuration options (name, state, dbo, table_path, ignore_request). * @param MVCFactoryInterface|null $factory The factory. * * @since 3.0 * @throws \Exception */ public function __construct($config = array(), MVCFactoryInterface $factory = null) { // @TODO remove me when the base model is db free $config['dbo'] = null; parent::__construct($config, $factory); } }