diff --git a/typo3/js/extjs/modulepanel.js b/typo3/js/extjs/modulepanel.js deleted file mode 100644 index 1836192d076e3ec240ec3a73f61ce4cd3372941b..0000000000000000000000000000000000000000 --- a/typo3/js/extjs/modulepanel.js +++ /dev/null @@ -1,46 +0,0 @@ -/** - * This file is part of the TYPO3 CMS project. - * - * It is free software; you can redistribute it and/or modify it under - * the terms of the GNU General Public License, either version 2 - * of the License, or any later version. - * - * For the full copyright and license information, please read the - * LICENSE.txt file that was distributed with this source code. - * - * The TYPO3 project - inspiring people to share! - */ - -Ext.ns('TYPO3'); - -TYPO3.modulePanel = Ext.extend(Ext.Panel, { - name: 'modulePanel', - maskMessage: ' ', - doMask: true, - border: false, - // component build - initComponent: function() { - Ext.apply(this, { - tbarCfg: { - cls: 't3skin-typo3-module-panel-toolbar' - }, - bbarCfg: { - cls: 't3skin-typo3-module-panel-toolbar' - } - }); - TYPO3.modulePanel.superclass.initComponent.apply(this, arguments); - this.addEvents('uriChanged'); - }, - setUrl: function(url) { - var paramsString; - var params; - this.url = url; - paramsString = url.split("?"); - params = Ext.urlDecode(paramsString[paramsString.length - 1]); - this.fireEvent('uriChanged', params.id, url, params, this); - }, - getUrl: function getUrl() { - return this.url; - } -}); -Ext.reg('modulePanel', TYPO3.modulePanel); diff --git a/typo3/sysext/backend/Classes/Controller/BackendController.php b/typo3/sysext/backend/Classes/Controller/BackendController.php index 3322189b70b5f0db94eb592f185b5e7e1da460bf..cd1f5bd44e672bb37b4e8965d8330317b0c701c6 100644 --- a/typo3/sysext/backend/Classes/Controller/BackendController.php +++ b/typo3/sysext/backend/Classes/Controller/BackendController.php @@ -126,7 +126,6 @@ class BackendController { 'viewport' => 'js/extjs/viewport.js', 'iframepanel' => 'sysext/backend/Resources/Public/JavaScript/iframepanel.js', 'backendcontentiframe' => 'js/extjs/backendcontentiframe.js', - 'modulepanel' => 'js/extjs/modulepanel.js', 'viewportConfiguration' => 'js/extjs/viewportConfiguration.js', 'util' => 'sysext/backend/Resources/Public/JavaScript/util.js' );