2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
2017-11-06 14:15:03 +00:00
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
@version 2.6.x
|
|
|
|
@created 30th April, 2015
|
2016-01-30 20:28:43 +00:00
|
|
|
@package Component Builder
|
2017-10-26 16:43:51 +00:00
|
|
|
@subpackage components_mysql_tweaks.php
|
2017-12-27 03:45:35 +00:00
|
|
|
@author Llewellyn van der Merwe <http://joomlacomponentbuilder.com>
|
2017-11-06 14:04:23 +00:00
|
|
|
@github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2016-01-30 20:28:43 +00:00
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
Builds Complex Joomla Components
|
|
|
|
|
|
|
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2017-10-26 16:43:51 +00:00
|
|
|
// import Joomla controlleradmin library
|
|
|
|
jimport('joomla.application.component.controlleradmin');
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2017-10-26 16:43:51 +00:00
|
|
|
/**
|
|
|
|
* Components_mysql_tweaks Controller
|
|
|
|
*/
|
|
|
|
class ComponentbuilderControllerComponents_mysql_tweaks extends JControllerAdmin
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2017-10-26 16:43:51 +00:00
|
|
|
protected $text_prefix = 'COM_COMPONENTBUILDER_COMPONENTS_MYSQL_TWEAKS';
|
|
|
|
/**
|
|
|
|
* Proxy for getModel.
|
|
|
|
* @since 2.5
|
|
|
|
*/
|
|
|
|
public function getModel($name = 'Component_mysql_tweaks', $prefix = 'ComponentbuilderModel', $config = array())
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2017-10-26 16:43:51 +00:00
|
|
|
$model = parent::getModel($name, $prefix, array('ignore_request' => true));
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|