LivePreset extends AbstractPreset
Live preset
only to be used within EXT:install
Table of Contents
Properties
- $configurationManager : ConfigurationManager
- $configurationValues : array<string|int, mixed>
- $name : string
- $postValues : array<string|int, mixed>
- $priority : int
- $readonlyConfigurationValues : array<string|int, mixed>
Methods
- __construct() : mixed
- getConfigurationValues() : array<string|int, mixed>
- Get configuration values to activate prefix
- getIsActive() : bool
- Wrapper for isActive, used in fluid
- getIsAvailable() : bool
- Wrapper for isAvailable, used in fluid
- getName() : string
- Get name of preset
- getPriority() : int
- If context is set to production, priority of this preset is raised.
- isActive() : bool
- Check is preset is currently active on the system
- isAvailable() : bool
- Production preset is always available
- setPostValues() : mixed
- Set POST values
Properties
$configurationManager
protected
ConfigurationManager
$configurationManager
$configurationValues
protected
array<string|int, mixed>
$configurationValues
= [
'BE/debug' => false,
'FE/debug' => false,
'SYS/devIPmask' => '',
'SYS/displayErrors' => 0,
// Values below are not available in UI
'LOG/TYPO3/CMS/deprecations/writerConfiguration/' . \TYPO3\CMS\Core\Log\LogLevel::NOTICE . '/' . \TYPO3\CMS\Core\Log\Writer\FileWriter::class . '/disabled' => true,
// E_RECOVERABLE_ERROR
'SYS/exceptionalErrors' => 4096,
]
Configuration values handled by this preset
$name
protected
string
$name
= 'Live'
Name of preset
$postValues
protected
array<string|int, mixed>
$postValues
= []
List of $POST values
$priority
protected
int
$priority
= 50
Priority of preset
$readonlyConfigurationValues
protected
array<string|int, mixed>
$readonlyConfigurationValues
= []
Configuration values that are visible but not editable via presets GUI
Methods
__construct()
public
__construct([ConfigurationManager $configurationManager = null ]) : mixed
Parameters
- $configurationManager : ConfigurationManager = null
getConfigurationValues()
Get configuration values to activate prefix
public
getConfigurationValues() : array<string|int, mixed>
Return values
array<string|int, mixed> —Configuration values needed to activate prefix
getIsActive()
Wrapper for isActive, used in fluid
public
getIsActive() : bool
Return values
bool —TRUE if preset is active
getIsAvailable()
Wrapper for isAvailable, used in fluid
public
getIsAvailable() : bool
Return values
bool —TRUE if preset is available
getName()
Get name of preset
public
getName() : string
Return values
string —Name
getPriority()
If context is set to production, priority of this preset is raised.
public
getPriority() : int
Return values
int —Priority of preset
isActive()
Check is preset is currently active on the system
public
isActive() : bool
Return values
bool —TRUE if preset is active
isAvailable()
Production preset is always available
public
isAvailable() : bool
Return values
bool —Always TRUE
setPostValues()
Set POST values
public
setPostValues(array<string|int, mixed> $postValues) : mixed
Parameters
- $postValues : array<string|int, mixed>
-
Post values of feature