TYPO3  7.6
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
BackendModuleController Class Reference
Inheritance diagram for BackendModuleController:
ActionController AbstractController ControllerInterface

Public Member Functions

 injectEnableFileService (\TYPO3\CMS\Install\Service\EnableFileService $enableFileService)
 
 initializeAction ()
 
 indexAction ()
 
 showEnableInstallToolButtonAction ()
 
 enableInstallToolAction ($installToolEnableToken)
 
- Public Member Functions inherited from ActionController
 injectReflectionService (\TYPO3\CMS\Extbase\Reflection\ReflectionService $reflectionService)
 
 injectCacheService (\TYPO3\CMS\Extbase\Service\CacheService $cacheService)
 
 injectMvcPropertyMappingConfigurationService (\TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfigurationService $mvcPropertyMappingConfigurationService)
 
 processRequest (\TYPO3\CMS\Extbase\Mvc\RequestInterface $request,\TYPO3\CMS\Extbase\Mvc\ResponseInterface $response)
 
- Public Member Functions inherited from AbstractController
 injectSignalSlotDispatcher (\TYPO3\CMS\Extbase\SignalSlot\Dispatcher $signalSlotDispatcher)
 
 injectValidatorResolver (\TYPO3\CMS\Extbase\Validation\ValidatorResolver $validatorResolver)
 
 getControllerContext ()
 
 __construct ()
 
 injectConfigurationManager (ConfigurationManagerInterface $configurationManager)
 
 injectObjectManager (\TYPO3\CMS\Extbase\Object\ObjectManagerInterface $objectManager)
 
 addFlashMessage ($messageBody, $messageTitle= '', $severity=\TYPO3\CMS\Core\Messaging\AbstractMessage::OK, $storeInSession=true)
 
 canProcessRequest (\TYPO3\CMS\Extbase\Mvc\RequestInterface $request)
 
 processRequest (\TYPO3\CMS\Extbase\Mvc\RequestInterface $request,\TYPO3\CMS\Extbase\Mvc\ResponseInterface $response)
 
 forward ($actionName, $controllerName=null, $extensionName=null, array $arguments=null)
 
 throwStatus ($statusCode, $statusMessage=null, $content=null)
 

Protected Member Functions

 redirect ($uri)
 
- Protected Member Functions inherited from ActionController
 initializeActionMethodArguments ()
 
 resolveActionMethodName ()
 
 emitBeforeCallActionMethodSignal (array $preparedArguments)
 
 setViewConfiguration (ViewInterface $view)
 
 getViewProperty ($extbaseFrameworkConfiguration, $setting)
 
 resolveViewObjectName ()
 
 initializeView (ViewInterface $view)
 
 initializeAction ()
 
 errorAction ()
 
 clearCacheOnError ()
 
 addErrorFlashMessage ()
 
 getErrorFlashMessage ()
 
 forwardToReferringRequest ()
 
 getFlattenedValidationErrorMessage ()
 
- Protected Member Functions inherited from AbstractController
 redirect ($actionName, $controllerName=null, $extensionName=null, array $arguments=null, $pageUid=null, $delay=0, $statusCode=303)
 
 redirectToUri ($uri, $delay=0, $statusCode=303)
 
 addBaseUriIfNecessary ($uri)
 

Protected Attributes

 $enableFileService
 
 $formProtection
 
- Protected Attributes inherited from ActionController
 $reflectionService
 
 $cacheService
 
 $view = null
 
 $namespacesViewObjectNamePattern = '@vendor\@extension\View\@controller\@action@format'
 
 $viewFormatToObjectNameMap = array()
 
 $defaultViewObjectName = \TYPO3\CMS\Fluid\View\TemplateView::class
 
 $actionMethodName = 'indexAction'
 
 $errorMethodName = 'errorAction'
 
 $mvcPropertyMappingConfigurationService
 
 $request
 
 $response
 
- Protected Attributes inherited from AbstractController
 $signalSlotDispatcher
 
 $objectManager
 
 $uriBuilder
 
 $extensionName
 
 $settings
 
 $request
 
 $response
 
 $validatorResolver
 
 $arguments
 
 $supportedRequestTypes = array(\TYPO3\CMS\Extbase\Mvc\Request::class)
 
 $controllerContext
 
 $configurationManager
 

Additional Inherited Members

- Static Public Member Functions inherited from ActionController
static getActionMethodParameters ($objectManager)
 

Detailed Description

Backend module controller

Embeds in backend an only shows the 'enable install tool button' or redirects to step installer if install tool is enabled.

This is a classic extbase module that does not interfere with the other code within the install tool.

Definition at line 26 of file BackendModuleController.php.

Member Function Documentation

enableInstallToolAction (   $installToolEnableToken)

Enable the install tool

Parameters
string$installToolEnableToken
Exceptions
\RuntimeException

Definition at line 85 of file BackendModuleController.php.

References AbstractController\forward().

indexAction ( )

Index action shows install tool / step installer or redirect to action to enable install tool

Returns
void

Definition at line 59 of file BackendModuleController.php.

References AbstractController\forward(), and BackendModuleController\redirect().

initializeAction ( )

Set formprotection property

Definition at line 49 of file BackendModuleController.php.

injectEnableFileService ( \TYPO3\CMS\Install\Service\EnableFileService  $enableFileService)
Parameters
\TYPO3\CMS\Install\Service\EnableFileService$enableFileService

Definition at line 41 of file BackendModuleController.php.

References BackendModuleController\$enableFileService.

redirect (   $uri)
protected

Redirect to specified URI

Parameters
string$uri

Definition at line 99 of file BackendModuleController.php.

Referenced by BackendModuleController\indexAction().

showEnableInstallToolButtonAction ( )

Show enable install tool

Returns
void

Definition at line 73 of file BackendModuleController.php.

Member Data Documentation

$enableFileService
protected
$formProtection
protected

Definition at line 36 of file BackendModuleController.php.