Deprecation: #84341 - Protected methods and properties in NewRecordController¶
See forge#84341
Description¶
This file is about third party usage of \TYPO3\
.
A series of class properties has been set to protected. They will throw deprecation warnings if called public from outside:
- [not scanned]
pageinfo
pid
Info new
Pages Into new
Content Into new
Pages After web_
list_ mod TSconfig allowed
New Tables denied
New Tables web_
list_ mod TSconfig_ pid allowed
New Tables_ pid denied
New Tables_ pid code
R_
URI - [not scanned]
id
return
Url pages
Only - [not scanned]
perms_
clause - [not scanned]
content
t
Rows
All methods not used as entry points by \TYPO3\
will be
removed or set to protected in v10 and throw deprecation warnings if used from a third party:
- [not scanned]
main
() pages
Only () regular
New () sort
New Records By Config () link
Wrap ()
Impact¶
Calling one of the above methods or accessing one of the above properties on an instance of
New
will throw a deprecation warning in v9 and a PHP fatal in v10.
Affected Installations¶
The extension scanner will find most usages, but may also find some false positives. The most
common property and method names like $content
are not registered and will not be found
if an extension uses that on an instance of New
.
In general all extensions that set properties or call methods except main
are affected.
Migration¶
In general, extensions should not instantiate and re-use controllers of the core. Existing usages should be rewritten to be free of calls like these.