From 4eb44cd81c0c436666e53c56bf50f431e5fb8dfe Mon Sep 17 00:00:00 2001 From: Frans Saris <franssaris@gmail.com> Date: Sat, 12 Oct 2013 23:19:17 +0200 Subject: [PATCH] [TASK] Remove add/edit wizards for defaultCategorizedTables Removed the add/edit wizards in default TCA column configuration for the SYS.defaultCategorizedTables. Resolves: #52699 Releases: 6.2 Change-Id: I7b08115c0ab0b2e2d58968a398d03e018bda3d78 Reviewed-on: https://review.typo3.org/24663 Reviewed-by: Francois Suter Tested-by: Francois Suter Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters --- .../Classes/Category/CategoryRegistry.php | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/typo3/sysext/core/Classes/Category/CategoryRegistry.php b/typo3/sysext/core/Classes/Category/CategoryRegistry.php index 89b34ff4d41d..8eccde0d94f0 100644 --- a/typo3/sysext/core/Classes/Category/CategoryRegistry.php +++ b/typo3/sysext/core/Classes/Category/CategoryRegistry.php @@ -315,29 +315,6 @@ class CategoryRegistry implements \TYPO3\CMS\Core\SingletonInterface { 'showHeader' => TRUE, ), ), - 'wizards' => array( - '_PADDING' => 1, - '_VERTICAL' => 1, - 'edit' => array( - 'type' => 'popup', - 'title' => 'Edit', - 'script' => 'wizard_edit.php', - 'icon' => 'edit2.gif', - 'popup_onlyOpenIfSelected' => 1, - 'JSopenParams' => 'height=350,width=580,status=0,menubar=0,scrollbars=1', - ), - 'add' => Array( - 'type' => 'script', - 'title' => 'Create new', - 'icon' => 'add.gif', - 'params' => array( - 'table' => 'sys_category', - 'pid' => '###CURRENT_PID###', - 'setValue' => 'prepend' - ), - 'script' => 'wizard_add.php', - ), - ), ); if (!empty($options['fieldConfiguration'])) { -- GitLab