forked from joomla/Component-Builder
Moved the MVC to extend the CMS MVC via namespace.
This commit is contained in:
parent
6e4443b997
commit
d789ef249e
@ -143,11 +143,11 @@ TODO
|
||||
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
||||
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
||||
+ *First Build*: 30th April, 2015
|
||||
+ *Last Build*: 19th May, 2022
|
||||
+ *Last Build*: 25th May, 2022
|
||||
+ *Version*: 2.12.17
|
||||
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **286780**
|
||||
+ *Line count*: **287273**
|
||||
+ *Field count*: **1581**
|
||||
+ *File count*: **1853**
|
||||
+ *Folder count*: **261**
|
||||
|
@ -143,11 +143,11 @@ TODO
|
||||
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
||||
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
||||
+ *First Build*: 30th April, 2015
|
||||
+ *Last Build*: 19th May, 2022
|
||||
+ *Last Build*: 25th May, 2022
|
||||
+ *Version*: 2.12.17
|
||||
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **286780**
|
||||
+ *Line count*: **287273**
|
||||
+ *Field count*: **1581**
|
||||
+ *File count*: **1853**
|
||||
+ *Folder count*: **261**
|
||||
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###ADMIN_VIEWS_CONTROLLER_HEADER###
|
||||
|
||||
/**
|
||||
* ###Views### Controller
|
||||
* ###Views### Admin Controller
|
||||
*/
|
||||
class ###Component###Controller###Views### extends JControllerAdmin
|
||||
class ###Component###Controller###Views### extends AdminController
|
||||
{
|
||||
/**
|
||||
* The prefix to use with controller messages.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###DASH_CONTROLLER_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### Controller
|
||||
* ###Component### Admin Controller
|
||||
*/
|
||||
class ###Component###Controller###Component### extends JControllerAdmin
|
||||
class ###Component###Controller###Component### extends AdminController
|
||||
{
|
||||
|
||||
}
|
@ -20,11 +20,18 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###CUSTOM_ADMIN_VIEWS_CONTROLLER_HEADER###
|
||||
|
||||
/**
|
||||
* ###SViews### Controller
|
||||
* ###SViews### Admin Controller
|
||||
*/
|
||||
class ###Component###Controller###SViews### extends JControllerAdmin
|
||||
class ###Component###Controller###SViews### extends AdminController
|
||||
{
|
||||
/**
|
||||
* The prefix to use with controller messages.
|
||||
*
|
||||
* @var string
|
||||
* @since 1.6
|
||||
*/
|
||||
protected $text_prefix = 'COM_###COMPONENT###_###SVIEWS###';
|
||||
|
||||
/**
|
||||
* Proxy for getModel.
|
||||
* @since 2.5
|
||||
@ -36,7 +43,7 @@ class ###Component###Controller###SViews### extends JControllerAdmin
|
||||
return $model;
|
||||
}
|
||||
|
||||
public function dashboard()
|
||||
public function dashboard()
|
||||
{
|
||||
$this->setRedirect(JRoute::_('index.php?option=com_###component###', false));
|
||||
return;
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###ADMIN_VIEW_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### ###View### Model
|
||||
* ###Component### ###View### Admin Model
|
||||
*/
|
||||
class ###Component###Model###View### extends JModelAdmin
|
||||
class ###Component###Model###View### extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###SITE_ADMIN_VIEW_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### ###View### Model
|
||||
* ###Component### ###View### Admin Model
|
||||
*/
|
||||
class ###Component###Model###View### extends JModelAdmin
|
||||
class ###Component###Model###View### extends AdminModel
|
||||
{
|
||||
/**
|
||||
* The tab layout fields array.
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* General Controller of ###Component### component
|
||||
*/
|
||||
class ###Component###Controller extends JControllerLegacy
|
||||
class ###Component###Controller extends BaseController
|
||||
{
|
||||
/**
|
||||
* Constructor.
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ###Component### Ajax Controller
|
||||
* ###Component### Ajax Base Controller
|
||||
*/
|
||||
class ###Component###ControllerAjax extends JControllerLegacy
|
||||
class ###Component###ControllerAjax extends BaseController
|
||||
{
|
||||
public function __construct($config)
|
||||
{
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ###Component### Ajax Controller
|
||||
* ###Component### Ajax Base Controller
|
||||
*/
|
||||
class ###Component###ControllerAjax extends JControllerLegacy
|
||||
class ###Component###ControllerAjax extends BaseController
|
||||
{
|
||||
public function __construct($config)
|
||||
{
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ###Component### Help Controller
|
||||
* ###Component### Help Base Controller
|
||||
*/
|
||||
class ###Component###ControllerHelp extends JControllerLegacy
|
||||
class ###Component###ControllerHelp extends BaseController
|
||||
{
|
||||
public function __construct($config)
|
||||
{
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ###Component### Help Controller
|
||||
* ###Component### Help Base Controller
|
||||
*/
|
||||
class ###Component###ControllerHelp extends JControllerLegacy
|
||||
class ###Component###ControllerHelp extends BaseController
|
||||
{
|
||||
public function __construct($config)
|
||||
{
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ###Component### Component Controller
|
||||
* ###Component### Component Base Controller
|
||||
*/
|
||||
class ###Component###Controller extends JControllerLegacy
|
||||
class ###Component###Controller extends BaseController
|
||||
{
|
||||
/**
|
||||
* Method to display a view.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###CUSTOM_ADMIN_VIEW_CONTROLLER_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### ###SView### Controller
|
||||
* ###Component### ###SView### Base Controller
|
||||
*/
|
||||
class ###Component###Controller###SView### extends JControllerLegacy
|
||||
class ###Component###Controller###SView### extends BaseController
|
||||
{
|
||||
public function __construct($config)
|
||||
{
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ###Component### Import Controller
|
||||
* ###Component### Import Base Controller
|
||||
*/
|
||||
class ###Component###ControllerImport extends JControllerLegacy
|
||||
class ###Component###ControllerImport extends BaseController
|
||||
{
|
||||
/**
|
||||
* Import an spreadsheet.
|
@ -17,12 +17,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
/**
|
||||
* ###Component### ###View### Controller
|
||||
* ###Component### ###View### Base Controller
|
||||
*/
|
||||
class ###Component###Controller###View### extends JControllerLegacy
|
||||
class ###Component###Controller###View### extends BaseController
|
||||
{
|
||||
/**
|
||||
* Import an spreadsheet.
|
@ -17,15 +17,16 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
|
||||
use Joomla\CMS\Filesystem\File;
|
||||
use Joomla\CMS\Filesystem\Folder;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use PhpOffice\PhpSpreadsheet\IOFactory;
|
||||
|
||||
/**
|
||||
* ###Component### Import Model
|
||||
* ###Component### Import Base Database Model
|
||||
*/
|
||||
class ###Component###ModelImport extends JModelLegacy
|
||||
class ###Component###ModelImport extends BaseDatabaseModel
|
||||
{
|
||||
// set uploading values
|
||||
protected $use_streams = false;
|
@ -17,15 +17,16 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\MVC\Model\BaseDatabaseModel;
|
||||
use Joomla\CMS\Filesystem\File;
|
||||
use Joomla\CMS\Filesystem\Folder;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use PhpOffice\PhpSpreadsheet\IOFactory;
|
||||
|
||||
/**
|
||||
* ###Component### ###View### Model
|
||||
* ###Component### ###View### Base Database Model
|
||||
*/
|
||||
class ###Component###Model###View### extends JModelLegacy
|
||||
class ###Component###Model###View### extends BaseDatabaseModel
|
||||
{
|
||||
// set uploading values
|
||||
protected $use_streams = false;
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###ADMIN_VIEW_CONTROLLER_HEADER###
|
||||
|
||||
/**
|
||||
* ###View### Controller
|
||||
* ###View### Form Controller
|
||||
*/
|
||||
class ###Component###Controller###View### extends JControllerForm
|
||||
class ###Component###Controller###View### extends FormController
|
||||
{
|
||||
/**
|
||||
* Current or most recently performed task.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###SITE_VIEW_CONTROLLER_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### ###SView### Controller
|
||||
* ###Component### ###SView### Form Controller
|
||||
*/
|
||||
class ###Component###Controller###SView### extends JControllerForm
|
||||
class ###Component###Controller###SView### extends FormController
|
||||
{
|
||||
/**
|
||||
* Current or most recently performed task.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###SITE_ADMIN_VIEW_CONTROLLER_HEADER###
|
||||
|
||||
/**
|
||||
* ###View### Controller
|
||||
* ###View### Form Controller
|
||||
*/
|
||||
class ###Component###Controller###View### extends JControllerForm
|
||||
class ###Component###Controller###View### extends FormController
|
||||
{
|
||||
/**
|
||||
* Current or most recently performed task.
|
@ -16,11 +16,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access'); ###LICENSE_LOCKED_DEFINED######CUSTOM_ADMIN_GET_MODULE_JIMPORT###
|
||||
|
||||
###CUSTOM_ADMIN_VIEW_HTML_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### View class for the ###SView###
|
||||
* ###Component### Html View class for the ###SView###
|
||||
*/
|
||||
class ###Component###View###SView### extends JViewLegacy
|
||||
class ###Component###View###SView### extends HtmlView
|
||||
{
|
||||
// Overwriting JView display method
|
||||
function display($tpl = null)
|
@ -16,11 +16,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED###
|
||||
|
||||
###ADMIN_VIEW_HTML_HEADER###
|
||||
|
||||
/**
|
||||
* ###View### View class
|
||||
* ###View### Html View class
|
||||
*/
|
||||
class ###Component###View###View### extends JViewLegacy
|
||||
class ###Component###View###View### extends HtmlView
|
||||
{
|
||||
/**
|
||||
* display method of View
|
@ -16,11 +16,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED###
|
||||
|
||||
###SITE_ADMIN_VIEW_HTML_HEADER###
|
||||
|
||||
/**
|
||||
* ###View### View class
|
||||
* ###View### Html View class
|
||||
*/
|
||||
class ###Component###View###View### extends JViewLegacy
|
||||
class ###Component###View###View### extends HtmlView
|
||||
{
|
||||
/**
|
||||
* display method of View
|
@ -17,10 +17,12 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED###
|
||||
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
|
||||
/**
|
||||
* ###Component### Import View
|
||||
* ###Component### Import Html View
|
||||
*/
|
||||
class ###Component###ViewImport extends JViewLegacy
|
||||
class ###Component###ViewImport extends HtmlView
|
||||
{
|
||||
protected $headerList;
|
||||
protected $hasPackage = false;
|
@ -17,10 +17,12 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED###
|
||||
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
|
||||
/**
|
||||
* ###Component### ###View### View
|
||||
* ###Component### ###View### Html View
|
||||
*/
|
||||
class ###Component###View###View### extends JViewLegacy
|
||||
class ###Component###View###View### extends HtmlView
|
||||
{###IMPORT_DISPLAY_METHOD_CUSTOM###
|
||||
|
||||
/**
|
@ -16,11 +16,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED###
|
||||
|
||||
###ADMIN_VIEWS_HTML_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### View class for the ###Views###
|
||||
* ###Component### Html View class for the ###Views###
|
||||
*/
|
||||
class ###Component###View###Views### extends JViewLegacy
|
||||
class ###Component###View###Views### extends HtmlView
|
||||
{
|
||||
/**
|
||||
* ###Views### view display method
|
@ -16,11 +16,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED######CUSTOM_ADMIN_GET_MODULE_JIMPORT###
|
||||
|
||||
###CUSTOM_ADMIN_VIEWS_HTML_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### View class for the ###SViews###
|
||||
* ###Component### Html View class for the ###SViews###
|
||||
*/
|
||||
class ###Component###View###SViews### extends JViewLegacy
|
||||
class ###Component###View###SViews### extends HtmlView
|
||||
{
|
||||
// Overwriting JView display method
|
||||
function display($tpl = null)
|
@ -16,11 +16,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED######SITE_GET_MODULE_JIMPORT###
|
||||
|
||||
###SITE_VIEWS_HTML_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### View class for the ###SViews###
|
||||
* ###Component### Html View class for the ###SViews###
|
||||
*/
|
||||
class ###Component###View###SViews### extends JViewLegacy
|
||||
class ###Component###View###SViews### extends HtmlView
|
||||
{
|
||||
// Overwriting JView display method
|
||||
function display($tpl = null)
|
@ -16,11 +16,13 @@ defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');###LICENSE_LOCKED_DEFINED######SITE_GET_MODULE_JIMPORT###
|
||||
|
||||
###SITE_VIEW_HTML_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### View class for the ###SView###
|
||||
* ###Component### Html View class for the ###SView###
|
||||
*/
|
||||
class ###Component###View###SView### extends JViewLegacy
|
||||
class ###Component###View###SView### extends HtmlView
|
||||
{
|
||||
// Overwriting JView display method
|
||||
function display($tpl = null)
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###CUSTOM_ADMIN_VIEW_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### ###SView### Model
|
||||
* ###Component### ###SView### Item Model
|
||||
*/
|
||||
class ###Component###Model###SView### extends JModelItem
|
||||
class ###Component###Model###SView### extends ItemModel
|
||||
{
|
||||
/**
|
||||
* Model context string.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###SITE_VIEW_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### ###SView### Model
|
||||
* ###Component### ###SView### Item Model
|
||||
*/
|
||||
class ###Component###Model###SView### extends JModelItem
|
||||
class ###Component###Model###SView### extends ItemModel
|
||||
{
|
||||
/**
|
||||
* Model context string.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###ADMIN_VIEWS_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Views### Model
|
||||
* ###Views### List Model
|
||||
*/
|
||||
class ###Component###Model###Views### extends JModelList
|
||||
class ###Component###Model###Views### extends ListModel
|
||||
{
|
||||
public function __construct($config = array())
|
||||
{
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###AJAX_ADMIN_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### Ajax Model
|
||||
* ###Component### Ajax List Model
|
||||
*/
|
||||
class ###Component###ModelAjax extends JModelList
|
||||
class ###Component###ModelAjax extends ListModel
|
||||
{
|
||||
protected $app_params;
|
||||
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###AJAX_SITE_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### Ajax Model
|
||||
* ###Component### Ajax List Model
|
||||
*/
|
||||
class ###Component###ModelAjax extends JModelList
|
||||
class ###Component###ModelAjax extends ListModel
|
||||
{
|
||||
protected $app_params;
|
||||
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###DASH_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### Model
|
||||
* ###Component### List Model
|
||||
*/
|
||||
class ###Component###Model###Component### extends JModelList
|
||||
class ###Component###Model###Component### extends ListModel
|
||||
{
|
||||
public function getIcons()
|
||||
{
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###CUSTOM_ADMIN_VIEWS_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### Model for ###SViews###
|
||||
* ###Component### List Model for ###SViews###
|
||||
*/
|
||||
class ###Component###Model###SViews### extends JModelList
|
||||
class ###Component###Model###SViews### extends ListModel
|
||||
{
|
||||
/**
|
||||
* Model user data.
|
@ -20,9 +20,9 @@ defined('_JEXEC') or die('Restricted access');
|
||||
###SITE_VIEWS_MODEL_HEADER###
|
||||
|
||||
/**
|
||||
* ###Component### Model for ###SViews###
|
||||
* ###Component### List Model for ###SViews###
|
||||
*/
|
||||
class ###Component###Model###SViews### extends JModelList
|
||||
class ###Component###Model###SViews### extends ListModel
|
||||
{
|
||||
/**
|
||||
* Model user data.
|
@ -17,6 +17,7 @@ defined('_JEXEC') or die('Restricted access');
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\Table\Table;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
@ -24,7 +25,7 @@ use Joomla\Utilities\ArrayHelper;
|
||||
/**
|
||||
* ###Views### Table class
|
||||
*/
|
||||
class ###Component###Table###View### extends JTable
|
||||
class ###Component###Table###View### extends Table
|
||||
{
|
||||
/**
|
||||
* Ensure the params and metadata in json encoded in the bind method
|
@ -64,8 +64,8 @@
|
||||
"rename": false,
|
||||
"type": "file"
|
||||
},
|
||||
"JControllerLegacy.php": {
|
||||
"naam": "JControllerLegacy.php",
|
||||
"BaseController.php": {
|
||||
"naam": "BaseController.php",
|
||||
"path": "c0mp0n3nt/admin",
|
||||
"rename": "new",
|
||||
"newName": "controller.php",
|
||||
@ -138,8 +138,8 @@
|
||||
"newName": "route.php",
|
||||
"type": "file"
|
||||
},
|
||||
"JControllerLegacySITE.php": {
|
||||
"naam": "JControllerLegacySITE.php",
|
||||
"BaseControllerSITE.php": {
|
||||
"naam": "BaseControllerSITE.php",
|
||||
"path": "c0mp0n3nt/site",
|
||||
"rename": "new",
|
||||
"newName": "controller.php",
|
||||
@ -232,14 +232,14 @@
|
||||
"rename": "Helper_",
|
||||
"type": "emailer"
|
||||
},
|
||||
"DASHJControllerAdmin.php": {
|
||||
"AdminControllerDashboard.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "DASHJControllerAdmin",
|
||||
"rename": "AdminControllerDashboard",
|
||||
"type": "dashboard"
|
||||
},
|
||||
"DASHJModelList.php": {
|
||||
"ListModelDASH.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "DASHJModelList",
|
||||
"rename": "ListModelDASH",
|
||||
"type": "dashboard"
|
||||
},
|
||||
"DASHJViewLagacy.php": {
|
||||
@ -289,19 +289,19 @@
|
||||
"rename": false,
|
||||
"type": "single"
|
||||
},
|
||||
"JModelAdmin.php": {
|
||||
"AdminModel.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelAdmin",
|
||||
"rename": "AdminModel",
|
||||
"type": "single"
|
||||
},
|
||||
"JControllerForm.php": {
|
||||
"FormController.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerForm",
|
||||
"rename": "FormController",
|
||||
"type": "single"
|
||||
},
|
||||
"JTable.php": {
|
||||
"Table.php": {
|
||||
"path": "c0mp0n3nt/admin/tables",
|
||||
"rename": "JTable",
|
||||
"rename": "Table",
|
||||
"type": "single"
|
||||
},
|
||||
"submitbutton.js": {
|
||||
@ -309,7 +309,7 @@
|
||||
"rename": false,
|
||||
"type": "single"
|
||||
},
|
||||
"JViewLegacy_edit.php": {
|
||||
"HtmlView_edit.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -320,14 +320,14 @@
|
||||
"rename": "view",
|
||||
"type": "single"
|
||||
},
|
||||
"JControllerAdmin.php": {
|
||||
"AdminController.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerAdmin",
|
||||
"rename": "AdminController",
|
||||
"type": "list"
|
||||
},
|
||||
"JModelList.php": {
|
||||
"ListModel.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelList",
|
||||
"rename": "ListModel",
|
||||
"type": "list"
|
||||
},
|
||||
"views.css": {
|
||||
@ -335,7 +335,7 @@
|
||||
"rename": "views",
|
||||
"type": "list"
|
||||
},
|
||||
"JViewLegacy_list.php": {
|
||||
"HtmlView_list.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -446,31 +446,31 @@
|
||||
"rename": "JFormFieldUser",
|
||||
"type": "fielduser"
|
||||
},
|
||||
"JControllerLegacyAjax.php": {
|
||||
"BaseControllerAjax.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "new",
|
||||
"newName": "ajax.json.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JModelListAjax.php": {
|
||||
"ListModelAjax.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "new",
|
||||
"newName": "ajax.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JControllerLegacy_import.php": {
|
||||
"BaseController_import.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "new",
|
||||
"newName": "import.php",
|
||||
"type": "import"
|
||||
},
|
||||
"JModelLegacy_import.php": {
|
||||
"BaseDatabaseModel_import.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "new",
|
||||
"newName": "import.php",
|
||||
"type": "import"
|
||||
},
|
||||
"JViewLegacy_import.php": {
|
||||
"HtmlView_import.php": {
|
||||
"path": "c0mp0n3nt/admin/views/import",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -482,17 +482,17 @@
|
||||
"newName": "default.php",
|
||||
"type": "import"
|
||||
},
|
||||
"JControllerLegacy_import_custom.php": {
|
||||
"BaseController_import_custom.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerLegacy_import_custom",
|
||||
"rename": "BaseController_import_custom",
|
||||
"type": "customimport"
|
||||
},
|
||||
"JModelLegacy_import_custom.php": {
|
||||
"BaseDatabaseModel_import_custom.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelLegacy_import_custom",
|
||||
"rename": "BaseDatabaseModel_import_custom",
|
||||
"type": "customimport"
|
||||
},
|
||||
"JViewLegacy_import_custom.php": {
|
||||
"HtmlView_import_custom.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -504,7 +504,7 @@
|
||||
"newName": "default.php",
|
||||
"type": "customimport"
|
||||
},
|
||||
"JControllerLegacyHelp.php": {
|
||||
"BaseControllerHelp.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "new",
|
||||
"newName": "help.php",
|
||||
@ -527,15 +527,15 @@
|
||||
}
|
||||
},
|
||||
"site": {
|
||||
"JViewLegacy_list_site.php": {
|
||||
"HtmlView_list_site.php": {
|
||||
"path": "c0mp0n3nt/site/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
"type": "list"
|
||||
},
|
||||
"JModelList_site.php": {
|
||||
"ListModel_site.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "JModelList_site",
|
||||
"rename": "ListModel_site",
|
||||
"type": "list"
|
||||
},
|
||||
"views_site.css": {
|
||||
@ -549,7 +549,7 @@
|
||||
"newName": "default.php",
|
||||
"type": "list"
|
||||
},
|
||||
"JViewLegacy_site.php": {
|
||||
"HtmlView_site.php": {
|
||||
"path": "c0mp0n3nt/site/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -560,9 +560,9 @@
|
||||
"rename": "view_site",
|
||||
"type": "single"
|
||||
},
|
||||
"JModelItem_site.php": {
|
||||
"ItemModel_site.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "JModelItem_site",
|
||||
"rename": "ItemModel_site",
|
||||
"type": "single"
|
||||
},
|
||||
"default_site.php": {
|
||||
@ -642,14 +642,14 @@
|
||||
"newName": "edit.php",
|
||||
"type": "edit"
|
||||
},
|
||||
"JModelAdmin_site.php": {
|
||||
"AdminModel_site.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "JModelAdmin_site",
|
||||
"rename": "AdminModel_site",
|
||||
"type": "edit"
|
||||
},
|
||||
"JControllerForm_site.php": {
|
||||
"FormController_site.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "JControllerForm_site",
|
||||
"rename": "FormController_site",
|
||||
"type": "edit"
|
||||
},
|
||||
"submitbutton.js": {
|
||||
@ -657,7 +657,7 @@
|
||||
"rename": false,
|
||||
"type": "edit"
|
||||
},
|
||||
"JViewLegacy_edit_site.php": {
|
||||
"HtmlView_edit_site.php": {
|
||||
"path": "c0mp0n3nt/site/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -668,27 +668,27 @@
|
||||
"rename": "view_site_edit",
|
||||
"type": "edit"
|
||||
},
|
||||
"JControllerLegacyAjaxSite.php": {
|
||||
"BaseControllerAjaxSite.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "new",
|
||||
"newName": "ajax.json.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JModelListAjaxSite.php": {
|
||||
"ListModelAjaxSite.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "new",
|
||||
"newName": "ajax.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JControllerLegacyHelp_site.php": {
|
||||
"BaseControllerHelp_site.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "new",
|
||||
"newName": "help.php",
|
||||
"type": "help"
|
||||
},
|
||||
"JControllerForm_custom_site.php": {
|
||||
"FormController_custom_site.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "JControllerForm_custom_site",
|
||||
"rename": "FormController_custom_site",
|
||||
"type": "custom_form"
|
||||
},
|
||||
"submitbutton_site.js": {
|
||||
@ -709,15 +709,15 @@
|
||||
}
|
||||
},
|
||||
"custom_admin": {
|
||||
"JViewLegacy_list_custom_admin.php": {
|
||||
"HtmlView_list_custom_admin.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
"type": "list"
|
||||
},
|
||||
"JModelList_custom_admin.php": {
|
||||
"ListModel_custom_admin.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelList_custom_admin",
|
||||
"rename": "ListModel_custom_admin",
|
||||
"type": "list"
|
||||
},
|
||||
"default_list_custom_admin.php": {
|
||||
@ -726,9 +726,9 @@
|
||||
"newName": "default.php",
|
||||
"type": "list"
|
||||
},
|
||||
"JControllerAdmin_custom_admin.php": {
|
||||
"AdminController_custom_admin.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerAdmin_custom_admin",
|
||||
"rename": "AdminController_custom_admin",
|
||||
"type": "list"
|
||||
},
|
||||
"views_custom_admin.css": {
|
||||
@ -741,15 +741,15 @@
|
||||
"rename": "view_custom_admin",
|
||||
"type": "single"
|
||||
},
|
||||
"JViewLegacy_custom_admin.php": {
|
||||
"HtmlView_custom_admin.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
"type": "single"
|
||||
},
|
||||
"JModelItem_custom_admin.php": {
|
||||
"ItemModel_custom_admin.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelItem_custom_admin",
|
||||
"rename": "ItemModel_custom_admin",
|
||||
"type": "single"
|
||||
},
|
||||
"default_custom_admin.php": {
|
||||
@ -758,9 +758,9 @@
|
||||
"newName": "default.php",
|
||||
"type": "single"
|
||||
},
|
||||
"JControllerLegacy_custom_admin.php": {
|
||||
"BaseController_custom_admin.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerLegacy_custom_admin",
|
||||
"rename": "BaseController_custom_admin",
|
||||
"type": "single"
|
||||
},
|
||||
"default_custom_admin_template.php": {
|
||||
|
@ -64,8 +64,8 @@
|
||||
"rename": false,
|
||||
"type": "file"
|
||||
},
|
||||
"JControllerLegacy.php": {
|
||||
"naam": "JControllerLegacy.php",
|
||||
"BaseController.php": {
|
||||
"naam": "BaseController.php",
|
||||
"path": "c0mp0n3nt/admin",
|
||||
"rename": "new",
|
||||
"newName": "controller.php",
|
||||
@ -138,8 +138,8 @@
|
||||
"newName": "route.php",
|
||||
"type": "file"
|
||||
},
|
||||
"JControllerLegacySITE.php": {
|
||||
"naam": "JControllerLegacySITE.php",
|
||||
"BaseControllerSITE.php": {
|
||||
"naam": "BaseControllerSITE.php",
|
||||
"path": "c0mp0n3nt/site",
|
||||
"rename": "new",
|
||||
"newName": "controller.php",
|
||||
@ -232,14 +232,14 @@
|
||||
"rename": "Helper_",
|
||||
"type": "emailer"
|
||||
},
|
||||
"DASHJControllerAdmin.php": {
|
||||
"AdminControllerDashboard.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "DASHJControllerAdmin",
|
||||
"rename": "AdminControllerDashboard",
|
||||
"type": "dashboard"
|
||||
},
|
||||
"DASHJModelList.php": {
|
||||
"ListModelDASH.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "DASHJModelList",
|
||||
"rename": "ListModelDASH",
|
||||
"type": "dashboard"
|
||||
},
|
||||
"DASHJViewLagacy.php": {
|
||||
@ -289,19 +289,19 @@
|
||||
"rename": false,
|
||||
"type": "single"
|
||||
},
|
||||
"JModelAdmin.php": {
|
||||
"AdminModel.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelAdmin",
|
||||
"rename": "AdminModel",
|
||||
"type": "single"
|
||||
},
|
||||
"JControllerForm.php": {
|
||||
"FormController.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerForm",
|
||||
"rename": "FormController",
|
||||
"type": "single"
|
||||
},
|
||||
"JTable.php": {
|
||||
"Table.php": {
|
||||
"path": "c0mp0n3nt/admin/tables",
|
||||
"rename": "JTable",
|
||||
"rename": "Table",
|
||||
"type": "single"
|
||||
},
|
||||
"submitbutton.js": {
|
||||
@ -309,7 +309,7 @@
|
||||
"rename": false,
|
||||
"type": "single"
|
||||
},
|
||||
"JViewLegacy_edit.php": {
|
||||
"HtmlView_edit.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -320,14 +320,14 @@
|
||||
"rename": "view",
|
||||
"type": "single"
|
||||
},
|
||||
"JControllerAdmin.php": {
|
||||
"AdminController.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerAdmin",
|
||||
"rename": "AdminController",
|
||||
"type": "list"
|
||||
},
|
||||
"JModelList.php": {
|
||||
"ListModel.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelList",
|
||||
"rename": "ListModel",
|
||||
"type": "list"
|
||||
},
|
||||
"views.css": {
|
||||
@ -335,7 +335,7 @@
|
||||
"rename": "views",
|
||||
"type": "list"
|
||||
},
|
||||
"JViewLegacy_list.php": {
|
||||
"HtmlView_list.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -446,31 +446,31 @@
|
||||
"rename": "JFormFieldUser",
|
||||
"type": "fielduser"
|
||||
},
|
||||
"JControllerLegacyAjax.php": {
|
||||
"BaseControllerAjax.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "new",
|
||||
"newName": "ajax.json.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JModelListAjax.php": {
|
||||
"ListModelAjax.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "new",
|
||||
"newName": "ajax.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JControllerLegacy_import.php": {
|
||||
"BaseController_import.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "new",
|
||||
"newName": "import.php",
|
||||
"type": "import"
|
||||
},
|
||||
"JModelLegacy_import.php": {
|
||||
"BaseDatabaseModel_import.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "new",
|
||||
"newName": "import.php",
|
||||
"type": "import"
|
||||
},
|
||||
"JViewLegacy_import.php": {
|
||||
"HtmlView_import.php": {
|
||||
"path": "c0mp0n3nt/admin/views/import",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -482,17 +482,17 @@
|
||||
"newName": "default.php",
|
||||
"type": "import"
|
||||
},
|
||||
"JControllerLegacy_import_custom.php": {
|
||||
"BaseController_import_custom.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "JControllerLegacy_import_custom",
|
||||
"rename": "BaseController_import_custom",
|
||||
"type": "customimport"
|
||||
},
|
||||
"JModelLegacy_import_custom.php": {
|
||||
"BaseDatabaseModel_import_custom.php": {
|
||||
"path": "c0mp0n3nt/admin/models",
|
||||
"rename": "JModelLegacy_import_custom",
|
||||
"rename": "BaseDatabaseModel_import_custom",
|
||||
"type": "customimport"
|
||||
},
|
||||
"JViewLegacy_import_custom.php": {
|
||||
"HtmlView_import_custom.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -504,7 +504,7 @@
|
||||
"newName": "default.php",
|
||||
"type": "customimport"
|
||||
},
|
||||
"JControllerLegacyHelp.php": {
|
||||
"BaseControllerHelp.php": {
|
||||
"path": "c0mp0n3nt/admin/controllers",
|
||||
"rename": "new",
|
||||
"newName": "help.php",
|
||||
@ -527,15 +527,15 @@
|
||||
}
|
||||
},
|
||||
"site": {
|
||||
"JViewLegacy_list_site.php": {
|
||||
"HtmlView_list_site.php": {
|
||||
"path": "c0mp0n3nt/site/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
"type": "list"
|
||||
},
|
||||
"JModelList_site.php": {
|
||||
"ListModel_site.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "JModelList_site",
|
||||
"rename": "ListModel_site",
|
||||
"type": "list"
|
||||
},
|
||||
"views_site.css": {
|
||||
@ -549,7 +549,7 @@
|
||||
"newName": "default.php",
|
||||
"type": "list"
|
||||
},
|
||||
"JViewLegacy_site.php": {
|
||||
"HtmlView_site.php": {
|
||||
"path": "c0mp0n3nt/site/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -560,9 +560,9 @@
|
||||
"rename": "view_site",
|
||||
"type": "single"
|
||||
},
|
||||
"JModelItem_site.php": {
|
||||
"ItemModel_site.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "JModelItem_site",
|
||||
"rename": "ItemModel_site",
|
||||
"type": "single"
|
||||
},
|
||||
"default_site.php": {
|
||||
@ -642,14 +642,14 @@
|
||||
"newName": "edit.php",
|
||||
"type": "edit"
|
||||
},
|
||||
"JModelAdmin_site.php": {
|
||||
"AdminModel_site.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "JModelAdmin_site",
|
||||
"rename": "AdminModel_site",
|
||||
"type": "edit"
|
||||
},
|
||||
"JControllerForm_site.php": {
|
||||
"FormController_site.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "JControllerForm_site",
|
||||
"rename": "FormController_site",
|
||||
"type": "edit"
|
||||
},
|
||||
"submitbutton.js": {
|
||||
@ -657,7 +657,7 @@
|
||||
"rename": false,
|
||||
"type": "edit"
|
||||
},
|
||||
"JViewLegacy_edit_site.php": {
|
||||
"HtmlView_edit_site.php": {
|
||||
"path": "c0mp0n3nt/site/views/VIEW",
|
||||
"rename": "new",
|
||||
"newName": "view.html.php",
|
||||
@ -668,27 +668,27 @@
|
||||
"rename": "view_site_edit",
|
||||
"type": "edit"
|
||||
},
|
||||
"JControllerLegacyAjaxSite.php": {
|
||||
"BaseControllerAjaxSite.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "new",
|
||||
"newName": "ajax.json.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JModelListAjaxSite.php": {
|
||||
"ListModelAjaxSite.php": {
|
||||
"path": "c0mp0n3nt/site/models",
|
||||
"rename": "new",
|
||||
"newName": "ajax.php",
|
||||
"type": "ajax"
|
||||
},
|
||||
"JControllerLegacyHelp_site.php": {
|
||||
"BaseControllerHelp_site.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "new",
|
||||
"newName": "help.php",
|
||||
"type": "help"
|
||||
},
|
||||
"JControllerForm_custom_site.php": {
|
||||
"FormController_custom_site.php": {
|
||||
"path": "c0mp0n3nt/site/controllers",
|
||||
"rename": "JControllerForm_custom_site",
|
||||
"rename": "FormController_custom_site",
|
||||
"type": "custom_form"
|
||||
},
|
||||
"submitbutton_site.js": {
|
||||
@ -709,15 +709,15 @@
|
||||
}
|
||||
},
|
||||
"custom_admin": {
|
||||
"JViewLegacy_list_custom_admin.php": {
|
||||
"HtmlView_list_custom_admin.php": {
|
||||
"path": "c0mp0n3nt/admin/views/VIEW",
|
||||
"rename": "new",
|
||||