DmitryDulepov\Realurl\Controller\BackendModuleController::processRequest PHP Method

processRequest() public method

Adds code to the standard request processor for saving the last action.
public processRequest ( TYPO3\CMS\Extbase\Mvc\RequestInterface $request, TYPO3\CMS\Extbase\Mvc\ResponseInterface $response )
$request TYPO3\CMS\Extbase\Mvc\RequestInterface
$response TYPO3\CMS\Extbase\Mvc\ResponseInterface
    public function processRequest(\TYPO3\CMS\Extbase\Mvc\RequestInterface $request, \TYPO3\CMS\Extbase\Mvc\ResponseInterface $response)
    {
        parent::processRequest($request, $response);
        // We are here ony if the action did not throw exceptions (==successful and not forwarded). Save the action.
        $this->storeLastModuleInformation();
    }