[TASK] Install tool configuration system
The patch implements a "configuration system" to the install tool that bundles several settings to enable them on click depending on system capabilities. A "feature" is represented by a set of configuration options that are filled by different presets. Presets have a priority, the best preset is the first one. Presets can be available or not available and active or not. For example the "image handling" feature has the presets "GraphicsMagick" and "ImageMagick 6" and a "Custom" preset if the others do not fit. This first patch implements "Charset conversion", "Image handling", "Development / Production" and "Extbase object cache" settings. During installation the available preset with highest priority are configured. Change-Id: I7304ef001717989720924e7ae03951eb3874adfd Resolves: #51454 Releases: 6.2 Reviewed-on: https://review.typo3.org/23321 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Jigal van Hemert Tested-by: Jigal van Hemert Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
Showing
- typo3/sysext/core/Classes/Configuration/ConfigurationManager.php 5 additions, 2 deletions...ysext/core/Classes/Configuration/ConfigurationManager.php
- typo3/sysext/core/Configuration/DefaultConfiguration.php 2 additions, 1 deletiontypo3/sysext/core/Configuration/DefaultConfiguration.php
- typo3/sysext/install/Classes/Configuration/AbstractCustomPreset.php 104 additions, 0 deletions...xt/install/Classes/Configuration/AbstractCustomPreset.php
- typo3/sysext/install/Classes/Configuration/AbstractFeature.php 143 additions, 0 deletions.../sysext/install/Classes/Configuration/AbstractFeature.php
- typo3/sysext/install/Classes/Configuration/AbstractPreset.php 143 additions, 0 deletions...3/sysext/install/Classes/Configuration/AbstractPreset.php
- typo3/sysext/install/Classes/Configuration/Charset/CharsetFeature.php 49 additions, 0 deletions.../install/Classes/Configuration/Charset/CharsetFeature.php
- typo3/sysext/install/Classes/Configuration/Charset/CoreInternalPreset.php 61 additions, 0 deletions...tall/Classes/Configuration/Charset/CoreInternalPreset.php
- typo3/sysext/install/Classes/Configuration/Charset/CustomPreset.php 42 additions, 0 deletions...xt/install/Classes/Configuration/Charset/CustomPreset.php
- typo3/sysext/install/Classes/Configuration/Charset/IconvPreset.php 65 additions, 0 deletions...ext/install/Classes/Configuration/Charset/IconvPreset.php
- typo3/sysext/install/Classes/Configuration/Charset/MbstringPreset.php 65 additions, 0 deletions.../install/Classes/Configuration/Charset/MbstringPreset.php
- typo3/sysext/install/Classes/Configuration/Context/ContextFeature.php 48 additions, 0 deletions.../install/Classes/Configuration/Context/ContextFeature.php
- typo3/sysext/install/Classes/Configuration/Context/CustomPreset.php 47 additions, 0 deletions...xt/install/Classes/Configuration/Context/CustomPreset.php
- typo3/sysext/install/Classes/Configuration/Context/DevelopmentPreset.php 81 additions, 0 deletions...stall/Classes/Configuration/Context/DevelopmentPreset.php
- typo3/sysext/install/Classes/Configuration/Context/ProductionPreset.php 81 additions, 0 deletions...nstall/Classes/Configuration/Context/ProductionPreset.php
- typo3/sysext/install/Classes/Configuration/CustomPresetInterface.php 51 additions, 0 deletions...t/install/Classes/Configuration/CustomPresetInterface.php
- typo3/sysext/install/Classes/Configuration/Exception.php 33 additions, 0 deletionstypo3/sysext/install/Classes/Configuration/Exception.php
- typo3/sysext/install/Classes/Configuration/ExtbaseObjectCache/ApcPreset.php 75 additions, 0 deletions...ll/Classes/Configuration/ExtbaseObjectCache/ApcPreset.php
- typo3/sysext/install/Classes/Configuration/ExtbaseObjectCache/DatabasePreset.php 60 additions, 0 deletions...asses/Configuration/ExtbaseObjectCache/DatabasePreset.php
- typo3/sysext/install/Classes/Configuration/ExtbaseObjectCache/ExtbaseObjectCacheFeature.php 47 additions, 0 deletions...guration/ExtbaseObjectCache/ExtbaseObjectCacheFeature.php
- typo3/sysext/install/Classes/Configuration/FeatureInterface.php 54 additions, 0 deletions...sysext/install/Classes/Configuration/FeatureInterface.php
Please register or sign in to comment