FormEditorController extends AbstractBackendController

The form editor controller

Scope: backend

Internal

Table of Contents

Constants

JS_MODULE_NAMES  = ['app', 'mediator', 'viewModel']

Properties

$actionMethodName  : non-empty-string
Name of the action method
$arguments  : Arguments
$configurationManager  : ConfigurationManagerInterface
$defaultViewObjectName  : class-string
The default view object to use if none of the resolved views can render a response for the current request.
$errorMethodName  : string
Name of the special error action method which is called in case of errors
$eventDispatcher  : EventDispatcherInterface
$formDefinitionConversionService  : FormDefinitionConversionService
$formPersistenceManager  : FormPersistenceManagerInterface
$formSettings  : array<string|int, mixed>
$hashService  : HashService
$iconFactory  : IconFactory
$moduleTemplateFactory  : ModuleTemplateFactory
$mvcPropertyMappingConfigurationService  : MvcPropertyMappingConfigurationService
$pageRenderer  : PageRenderer
$prototypeConfiguration  : array<string|int, mixed>
$reflectionService  : ReflectionService
$request  : RequestInterface
$responseFactory  : ResponseFactoryInterface
$settings  : array<string|int, mixed>
Contains the settings of the current extension
$streamFactory  : StreamFactoryInterface
$uriBuilder  : UriBuilder
$validatorResolver  : ValidatorResolver
$view  : ViewInterface|ViewInterface
The current view, as resolved by resolveView()

Methods

__construct()  : mixed
addFlashMessage()  : void
Creates a Message object and adds it to the FlashMessageQueue.
indexAction()  : ResponseInterface
Display the form editor.
initializeControllerArgumentsBaseValidators()  : void
Collects the base validators which were defined for the data type of each controller argument and adds them to the argument's validator chain.
initializeObject()  : mixed
initializeSaveFormAction()  : void
Initialize the save action.
injectConfigurationManager()  : void
injectEventDispatcher()  : void
injectFormPersistenceManager()  : mixed
injectHashService()  : void
injectInternalExtensionService()  : void
injectInternalFlashMessageService()  : void
injectMvcPropertyMappingConfigurationService()  : void
injectPropertyMapper()  : void
injectReflectionService()  : void
injectResponseFactory()  : void
injectStreamFactory()  : void
injectValidatorResolver()  : void
injectViewResolver()  : void
processRequest()  : ResponseInterface
Handles an incoming request and returns a response object
renderFormPageAction()  : ResponseInterface
Render a page from the formDefinition which was build by the form editor.
saveFormAction()  : ResponseInterface
Save a formDefinition which was build by the form editor.
throwStatus()  : never
Sends the specified HTTP status immediately and only stops to run back through the middleware stack.
addBaseUriIfNecessary()  : string
Adds the base uri if not already in place.
addErrorFlashMessage()  : void
If an error occurred during this request, this adds a flash message describing the error to the flash message container.
buildFakeSiteLanguage()  : SiteLanguage
Build a SiteLanguage object to render the form preview with a specific language.
callActionMethod()  : ResponseInterface
Calls the specified action method and passes the arguments.
errorAction()  : ResponseInterface
A special action which is called if the originally intended action could not be called, for example if the arguments were not valid.
filterEmptyArrays()  : array<string|int, mixed>
Remove keys from an array if the key value is an empty array
forwardToReferringRequest()  : ResponseInterface|null
If information on the request before the current request was sent, this method forwards back to the originating request. This effectively ends processing of the current request, so do not call this method before you have finished the necessary business logic!
getBackendUser()  : BackendUserAuthentication
getErrorFlashMessage()  : bool|string
A template method for displaying custom error flash messages, or to display no flash message at all on errors. Override this to customize the flash message in your action controller.
getFlashMessageQueue()  : FlashMessageQueue
todo: As soon as the incoming request contains the compiled plugin namespace, extbase will offer a trait to create a flash message identifier from the current request. Users then should inject the flash message service themselves if needed.
getFlattenedValidationErrorMessage()  : string
Returns a string with a basic error message about validation failure.
getFormEditorDefinitions()  : array<string|int, mixed>
Reduce the YAML settings by the 'formEditor' keyword.
getInsertRenderablesPanelConfiguration()  : array<string|int, mixed>
Prepare the formElements.*.formEditor section from the YAML settings.
getLanguageService()  : LanguageService
htmlResponse()  : ResponseInterface
Returns a response object with either the given html string or the current rendered view as content.
initializeAction()  : void
Initializes the controller before invoking an action method.
initializeActionMethodArguments()  : void
Implementation of the arguments initialization in the action controller: Automatically registers arguments of the current action
initializeActionMethodValidators()  : void
Adds the needed validators to the Arguments:
initializeModuleTemplate()  : ModuleTemplate
Initialize ModuleTemplate and register docheader icons.
jsonResponse()  : ResponseInterface
Returns a response object with either the given json string or the current rendered view as content. Mainly to be used for actions / controllers using the JsonView.
mapRequestArgumentsToControllerArguments()  : void
Maps arguments delivered by the request object to the local controller arguments.
migrateEmailFinisherRecipients()  : array<string|int, mixed>
Migrate single recipient options to their list successors
redirect()  : ResponseInterface
Redirects the request to another action and / or controller.
redirectToUri()  : ResponseInterface
Redirects the web request to another uri.
renderAssetsForRequest()  : void
Method which initializes assets that should be attached to the response for the given $request, which contains parameters that an override can use to determine which assets to add via PageRenderer.
renderFormEditorTemplates()  : string
Render the form editor templates.
resolveActionMethodName()  : string
Resolves and checks the current action method name
resolveView()  : ViewInterface|ViewInterface
Prepares a view for the current action.
setViewConfiguration()  : void
transformFormDefinitionForFormEditor()  : array<string|int, mixed>
transformMultiValuePropertiesForFormEditor()  : array<string|int, mixed>
Some data needs a transformation before it can be used by the form editor. This rules for multivalue elements like select elements. To ensure the right sorting if the data goes into javascript, we need to do transformations:

Constants

JS_MODULE_NAMES

protected mixed JS_MODULE_NAMES = ['app', 'mediator', 'viewModel']

Properties

$actionMethodName

Name of the action method

protected non-empty-string $actionMethodName = 'indexAction'
Internal

$defaultViewObjectName

The default view object to use if none of the resolved views can render a response for the current request.

protected class-string $defaultViewObjectName = \TYPO3\CMS\Fluid\View\TemplateView::class

$errorMethodName

Name of the special error action method which is called in case of errors

protected string $errorMethodName = 'errorAction'

$eventDispatcher

protected EventDispatcherInterface $eventDispatcher

$formSettings

protected array<string|int, mixed> $formSettings

$prototypeConfiguration

protected array<string|int, mixed> $prototypeConfiguration

$responseFactory

protected ResponseFactoryInterface $responseFactory

$settings

Contains the settings of the current extension

protected array<string|int, mixed> $settings

$streamFactory

protected StreamFactoryInterface $streamFactory

$view

The current view, as resolved by resolveView()

protected ViewInterface|ViewInterface $view
Tags
todo

Use "protected ViewInterface $view;" in v14.

Methods

addFlashMessage()

Creates a Message object and adds it to the FlashMessageQueue.

public addFlashMessage(string $messageBody[, string $messageTitle = '' ][, ContextualFeedbackSeverity $severity = ContextualFeedbackSeverity::OK ][, bool $storeInSession = true ]) : void
Parameters
$messageBody : string
$messageTitle : string = ''
$severity : ContextualFeedbackSeverity = ContextualFeedbackSeverity::OK
$storeInSession : bool = true
Tags
throws
InvalidArgumentException

if the message body is no string

see
FlashMessage

indexAction()

Display the form editor.

public indexAction(string $formPersistenceIdentifier[, string|null $prototypeName = null ]) : ResponseInterface
Parameters
$formPersistenceIdentifier : string
$prototypeName : string|null = null
Tags
throws
PersistenceManagerException
Return values
ResponseInterface

initializeControllerArgumentsBaseValidators()

Collects the base validators which were defined for the data type of each controller argument and adds them to the argument's validator chain.

public initializeControllerArgumentsBaseValidators() : void
Internal

initializeObject()

public initializeObject() : mixed

initializeSaveFormAction()

Initialize the save action.

public initializeSaveFormAction() : void

This action uses the Fluid JsonView::class as view.

injectEventDispatcher()

public injectEventDispatcher(EventDispatcherInterface $eventDispatcher) : void
Parameters
$eventDispatcher : EventDispatcherInterface

injectResponseFactory()

public final injectResponseFactory(ResponseFactoryInterface $responseFactory) : void
Parameters
$responseFactory : ResponseFactoryInterface

injectStreamFactory()

public final injectStreamFactory(StreamFactoryInterface $streamFactory) : void
Parameters
$streamFactory : StreamFactoryInterface

processRequest()

Handles an incoming request and returns a response object

public processRequest(RequestInterface $request) : ResponseInterface
Parameters
$request : RequestInterface

The request object

Internal
Return values
ResponseInterface

renderFormPageAction()

Render a page from the formDefinition which was build by the form editor.

public renderFormPageAction(FormDefinitionArray $formDefinition, int $pageIndex[, string|null $prototypeName = null ]) : ResponseInterface

Use the frontend rendering and set the form framework to preview mode.

Parameters
$formDefinition : FormDefinitionArray
$pageIndex : int
$prototypeName : string|null = null
Return values
ResponseInterface

saveFormAction()

Save a formDefinition which was build by the form editor.

public saveFormAction(string $formPersistenceIdentifier, FormDefinitionArray $formDefinition) : ResponseInterface
Parameters
$formPersistenceIdentifier : string
$formDefinition : FormDefinitionArray
Return values
ResponseInterface

throwStatus()

Sends the specified HTTP status immediately and only stops to run back through the middleware stack.

public throwStatus(int $statusCode[, string $statusMessage = '' ][, string|null $content = null ]) : never

Note: If any other plugin or content or hook is used within a frontend request, this is skipped by design.

Parameters
$statusCode : int

The HTTP status code

$statusMessage : string = ''

A custom HTTP status message

$content : string|null = null

Body content which further explains the status

Tags
throws
PropagateResponseException
Return values
never

addBaseUriIfNecessary()

Adds the base uri if not already in place.

protected addBaseUriIfNecessary(string $uri) : string
Parameters
$uri : string
Internal
Return values
string

addErrorFlashMessage()

If an error occurred during this request, this adds a flash message describing the error to the flash message container.

protected addErrorFlashMessage() : void
Internal

buildFakeSiteLanguage()

Build a SiteLanguage object to render the form preview with a specific language.

protected buildFakeSiteLanguage(int $pageId, int $languageId) : SiteLanguage
Parameters
$pageId : int
$languageId : int
Return values
SiteLanguage

callActionMethod()

Calls the specified action method and passes the arguments.

protected callActionMethod(RequestInterface $request) : ResponseInterface

If the action returns a string, it is appended to the content in the response object. If the action doesn't return anything and a valid view exists, the view is rendered automatically.

Parameters
$request : RequestInterface
Internal
Return values
ResponseInterface

errorAction()

A special action which is called if the originally intended action could not be called, for example if the arguments were not valid.

protected errorAction() : ResponseInterface

The default implementation sets a flash message, request errors and forwards back to the originating action. This is suitable for most actions dealing with form input.

We clear the page cache by default on an error as well, as we need to make sure the data is re-evaluated when the user changes something.

Return values
ResponseInterface

filterEmptyArrays()

Remove keys from an array if the key value is an empty array

protected filterEmptyArrays(array<string|int, mixed> $array) : array<string|int, mixed>
Parameters
$array : array<string|int, mixed>
Return values
array<string|int, mixed>

forwardToReferringRequest()

If information on the request before the current request was sent, this method forwards back to the originating request. This effectively ends processing of the current request, so do not call this method before you have finished the necessary business logic!

protected forwardToReferringRequest() : ResponseInterface|null
Internal
Return values
ResponseInterface|null

getErrorFlashMessage()

A template method for displaying custom error flash messages, or to display no flash message at all on errors. Override this to customize the flash message in your action controller.

protected getErrorFlashMessage() : bool|string

Returns either the flash message or "false" if no flash message should be set

Return values
bool|string

getFlashMessageQueue()

todo: As soon as the incoming request contains the compiled plugin namespace, extbase will offer a trait to create a flash message identifier from the current request. Users then should inject the flash message service themselves if needed.

protected getFlashMessageQueue([string|null $identifier = null ]) : FlashMessageQueue
Parameters
$identifier : string|null = null
Internal
Return values
FlashMessageQueue

getFlattenedValidationErrorMessage()

Returns a string with a basic error message about validation failure.

protected getFlattenedValidationErrorMessage() : string

We may add all validation error messages to a log file in the future, but for security reasons (@see #54074) we do not return these here.

Internal
Return values
string

getFormEditorDefinitions()

Reduce the YAML settings by the 'formEditor' keyword.

protected getFormEditorDefinitions() : array<string|int, mixed>
Return values
array<string|int, mixed>

getInsertRenderablesPanelConfiguration()

Prepare the formElements.*.formEditor section from the YAML settings.

protected getInsertRenderablesPanelConfiguration(array<string|int, mixed> $formElementsDefinition) : array<string|int, mixed>

Sort all formElements into groups and add additional data.

Parameters
$formElementsDefinition : array<string|int, mixed>
Return values
array<string|int, mixed>

htmlResponse()

Returns a response object with either the given html string or the current rendered view as content.

protected htmlResponse([string|null $html = null ]) : ResponseInterface
Parameters
$html : string|null = null
Return values
ResponseInterface

initializeAction()

Initializes the controller before invoking an action method.

protected initializeAction() : void

Override this method to solve tasks which all actions have in common.

initializeActionMethodArguments()

Implementation of the arguments initialization in the action controller: Automatically registers arguments of the current action

protected initializeActionMethodArguments() : void

Don't override this method - use initializeAction() instead.

Internal
Tags
throws
InvalidArgumentTypeException
see
initializeArguments()

initializeActionMethodValidators()

Adds the needed validators to the Arguments:

protected initializeActionMethodValidators() : void
  • Validators checking the data type from the @param annotation
  • Custom validators specified with validate annotations.
  • Model-based validators (validate annotations in the model)
  • Custom model validator classes
Internal

jsonResponse()

Returns a response object with either the given json string or the current rendered view as content. Mainly to be used for actions / controllers using the JsonView.

protected jsonResponse([string|null $json = null ]) : ResponseInterface
Parameters
$json : string|null = null
Return values
ResponseInterface

mapRequestArgumentsToControllerArguments()

Maps arguments delivered by the request object to the local controller arguments.

protected mapRequestArgumentsToControllerArguments() : void
Internal
Tags
throws
RequiredArgumentMissingException

migrateEmailFinisherRecipients()

Migrate single recipient options to their list successors

protected migrateEmailFinisherRecipients(array<string|int, mixed> $formDefinition) : array<string|int, mixed>
Parameters
$formDefinition : array<string|int, mixed>
Return values
array<string|int, mixed>

redirect()

Redirects the request to another action and / or controller.

protected redirect(string|null $actionName[, string|null $controllerName = null ][, string|null $extensionName = null ][, array<string|int, mixed>|null $arguments = null ][, int|null $pageUid = null ][, null $_ = null ][, int $statusCode = 303 ]) : ResponseInterface

Redirect will be sent to the client which then performs another request to the new URI.

Parameters
$actionName : string|null

Name of the action to forward to

$controllerName : string|null = null

Unqualified object name of the controller to forward to. If not specified, the current controller is used.

$extensionName : string|null = null

Name of the extension containing the controller to forward to. If not specified, the current extension is assumed.

$arguments : array<string|int, mixed>|null = null

Arguments to pass to the target action

$pageUid : int|null = null

Target page uid. If NULL, the current page uid is used

$_ : null = null

(optional) Unused

$statusCode : int = 303

(optional) The HTTP status code for the redirect. Default is "303 See Other

Return values
ResponseInterface

redirectToUri()

Redirects the web request to another uri.

protected redirectToUri(string|UriInterface $uri[, null $_ = null ][, int $statusCode = 303 ]) : ResponseInterface
Parameters
$uri : string|UriInterface

A string representation of a URI

$_ : null = null

(optional) Unused

$statusCode : int = 303

(optional) The HTTP status code for the redirect. Default is "303 See Other"

Return values
ResponseInterface

renderAssetsForRequest()

Method which initializes assets that should be attached to the response for the given $request, which contains parameters that an override can use to determine which assets to add via PageRenderer.

protected renderAssetsForRequest(RequestInterface $request) : void

This default implementation will attempt to render the sections "HeaderAssets" and "FooterAssets" from the template that is being rendered, inserting the rendered content into either page header or footer, as appropriate. Both sections are optional and can be used one or both in combination.

You can add assets with this method without worrying about duplicates, if for example you do this in a plugin that gets used multiple time on a page.

Parameters
$request : RequestInterface
Internal

renderFormEditorTemplates()

Render the form editor templates.

protected renderFormEditorTemplates(array<string|int, mixed> $formEditorDefinitions) : string
Parameters
$formEditorDefinitions : array<string|int, mixed>
Return values
string

resolveActionMethodName()

Resolves and checks the current action method name

protected resolveActionMethodName() : string
Internal
Tags
throws
NoSuchActionException

if the action specified in the request object does not exist (and if there's no default action either).

Return values
string

resolveView()

Prepares a view for the current action.

protected resolveView() : ViewInterface|ViewInterface

By default, this method tries to locate a view with a name matching the current action.

Internal
Tags
todo

Set "protected function resolveView(): ViewInterface" in v14.

Return values
ViewInterface|ViewInterface

setViewConfiguration()

protected setViewConfiguration(ViewInterface|ViewInterface $view) : void
Parameters
$view : ViewInterface|ViewInterface
Internal
Tags
todo:

Set signature to setViewConfiguration(ViewInterface $view) in v14.

transformFormDefinitionForFormEditor()

protected transformFormDefinitionForFormEditor(array<string|int, mixed> $formDefinition) : array<string|int, mixed>
Parameters
$formDefinition : array<string|int, mixed>
Tags
todo

move this to FormDefinitionConversionService

Return values
array<string|int, mixed>

transformMultiValuePropertiesForFormEditor()

Some data needs a transformation before it can be used by the form editor. This rules for multivalue elements like select elements. To ensure the right sorting if the data goes into javascript, we need to do transformations:

protected transformMultiValuePropertiesForFormEditor(array<string|int, mixed> $formDefinition, string $identifierProperty, array<string, array<int, string>> $multiValueProperties) : array<string|int, mixed>

[ '5' => '5', '4' => '4', '3' => '3' ]

This method transform this into:

[ [ _label => '5' _value => 5 ], [ _label => '4' _value => 4 ], [ _label => '3' _value => 3 ], ]

Parameters
$formDefinition : array<string|int, mixed>
$identifierProperty : string
$multiValueProperties : array<string, array<int, string>>
Return values
array<string|int, mixed>

        
On this page

Search results