1 .. include:: ../../Includes.txt
3 =====================================================================================
4 Deprecation: #86441 - Various methods and properties inside BackendUserAuthentication
5 =====================================================================================
12 Some minor changes have been made with :php:`TYPO3\CMS\Core\Authentication\BackendUserAuthentication` in order
13 to continue cleaning up the code.
15 The property :php:`checkWorkspaceCurrent_cache` has been marked as protected, as it is an internal cache.
17 The second argument of method :php:`modAccess()` has been marked as deprecated, as the method should not trigger runtime exceptions anymore.
19 The method :php:`isPSet()` has been marked as deprecated.
21 The following - mostly workspaces-related - methods have been marked as "internal":
23 * :php:`workspaceCannotEditOfflineVersion()`
24 * :php:`workspacePublishAccess()`
25 * :php:`workspaceSwapAccess()`
26 * :php:`workspaceCannotEditOfflineVersion()`
32 Calling the deprecated method or the protected property will trigger a PHP :php:`E_USER_DEPRECATED` error.
35 Affected Installations
36 ======================
38 TYPO3 installations with enhanced workspace or permission functionality.
44 Avoid using the methods, and re-implement the functionality on your own, if necessary.
46 .. index:: Frontend, FullyScanned, PHP-API