Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.14 KB

Breaking-87627-RemovePropertyExtensionNameOfAbstractController.rst

File metadata and controls

37 lines (23 loc) · 1.14 KB

Breaking: #87627 - Remove Property extensionName of AbstractController

See 87627

Description

\TYPO3\CMS\Extbase\Mvc\Controller\AbstractController::$extensionName has been removed and is no longer available in subclasses of \TYPO3\CMS\Extbase\Mvc\Controller\AbstractController, i.e. \TYPO3\CMS\Extbase\Mvc\Controller\ActionController and their derivates.

Impact

Accessing the missing property $extensionName will throw a fatal error.

Affected Installations

All installations that read from \TYPO3\CMS\Extbase\Mvc\Controller\AbstractController::$extensionName.

Migration

The extension name is set in and available through the request object that is available in the controller. See \TYPO3\CMS\Extbase\Mvc\Controller\AbstractController::$request and \TYPO3\CMS\Extbase\Mvc\Request::getControllerExtensionName() for more information.

PHP-API, NotScanned, ext:extbase