BackendLayoutFromParentPage extends AbstractNode
This field information node is used for the pages backend_layout field to inform about a possible backend layout, inherited form a parent page.
Table of Contents
Properties
- $data : array<string|int, mixed>
- Main data array to work on, given from parent to child elements
- $defaultFieldControl : array<string|int, mixed>
- A list of default field controls added to the element / container.
- $defaultFieldInformation : array<string|int, mixed>
- A list of default field information added to the element / container.
- $defaultFieldWizard : array<string|int, mixed>
- A list of default field wizards added to the element / container.
Methods
- __construct() : mixed
- render() : array<string|int, mixed>
- Handler for single nodes
- setData() : void
- Retrieve the current data array from NodeFactory.
- getFieldValueLabel() : string
- getLanguageService() : LanguageService
- getValidationDataAsJsonString() : string
- Build JSON string for validations rules.
- initializeResultArray() : array<string|int, mixed>
- Initialize the array that is returned to parent after calling. This structure is identical for *all* nodes. Parent will merge the return of a child with its own stuff and in itself return an array of the same structure.
- mergeChildReturnIntoExistingResult() : array<string|int, mixed>
- Merge existing data with a child return array.
Properties
$data
Main data array to work on, given from parent to child elements
        protected
            array<string|int, mixed>
    $data
     = []
    
    
    
    
    
$defaultFieldControl
A list of default field controls added to the element / container.
        protected
            array<string|int, mixed>
    $defaultFieldControl
     = []
        This property is often reset by single elements.
$defaultFieldInformation
A list of default field information added to the element / container.
        protected
            array<string|int, mixed>
    $defaultFieldInformation
     = []
    
    
    
    
    
$defaultFieldWizard
A list of default field wizards added to the element / container.
        protected
            array<string|int, mixed>
    $defaultFieldWizard
     = []
        This property is often reset by single elements.
Methods
__construct()
    public
                    __construct(BackendLayoutView $backendLayoutView) : mixed
    Parameters
- $backendLayoutView : BackendLayoutView
render()
Handler for single nodes
    public
                    render() : array<string|int, mixed>
    Return values
array<string|int, mixed> —As defined in initializeResultArray() of AbstractNode
setData()
Retrieve the current data array from NodeFactory.
    public
                    setData(array<string|int, mixed> $data) : void
    Parameters
- $data : array<string|int, mixed>
getFieldValueLabel()
    protected
                    getFieldValueLabel(array<string|int, mixed> $fieldConfiguration, string $fieldValue) : string
    Parameters
- $fieldConfiguration : array<string|int, mixed>
- $fieldValue : string
Return values
stringgetLanguageService()
    protected
                    getLanguageService() : LanguageService
    Return values
LanguageServicegetValidationDataAsJsonString()
Build JSON string for validations rules.
    protected
                    getValidationDataAsJsonString(array<string|int, mixed> $config) : string
    Parameters
- $config : array<string|int, mixed>
Return values
stringinitializeResultArray()
Initialize the array that is returned to parent after calling. This structure is identical for *all* nodes. Parent will merge the return of a child with its own stuff and in itself return an array of the same structure.
    protected
                    initializeResultArray() : array<string|int, mixed>
    Return values
array<string|int, mixed>mergeChildReturnIntoExistingResult()
Merge existing data with a child return array.
    protected
                    mergeChildReturnIntoExistingResult(array<string|int, mixed> $existing, array<string|int, mixed> $childReturn[, bool $mergeHtml = true ]) : array<string|int, mixed>
    The incoming $childReturn array should be initialized using initializeResultArray() beforehand.
Parameters
- $existing : array<string|int, mixed>
- 
                    Currently merged array 
- $childReturn : array<string|int, mixed>
- 
                    Array returned by child 
- $mergeHtml : bool = true
- 
                    If false, the ['html'] section of $childReturn will NOT be added to $existing 
Return values
array<string|int, mixed> —Result array