47 lines
1.1 KiB
ReStructuredText
47 lines
1.1 KiB
ReStructuredText
.. include:: /Includes.rst.txt
|
|
|
|
.. _deprecation-85123:
|
|
|
|
===================================================
|
|
Deprecation: #85123 - Constants related to Services
|
|
===================================================
|
|
|
|
See :issue:`85123`
|
|
|
|
Description
|
|
===========
|
|
|
|
The following constants have been marked as deprecated, and will be removed in TYPO3 v10.0.
|
|
|
|
- :php:`T3_ERR_SV_GENERAL`
|
|
- :php:`T3_ERR_SV_NOT_AVAIL`
|
|
- :php:`T3_ERR_SV_WRONG_SUBTYPE`
|
|
- :php:`T3_ERR_SV_NO_INPUT`
|
|
- :php:`T3_ERR_SV_FILE_NOT_FOUND`
|
|
- :php:`T3_ERR_SV_FILE_READ`
|
|
- :php:`T3_ERR_SV_FILE_WRITE`
|
|
- :php:`T3_ERR_SV_PROG_NOT_FOUND`
|
|
- :php:`T3_ERR_SV_PROG_FAILED`
|
|
|
|
The according constants have been moved to class constants of :php:`TYPO3\CMS\Core\Service\AbstractService`.
|
|
|
|
|
|
Impact
|
|
======
|
|
|
|
These constants will not trigger a deprecation warning, however they will result in a fatal error in TYPO3 v10.0.
|
|
|
|
|
|
Affected Installations
|
|
======================
|
|
|
|
TYPO3 Installations with extensions using these constants or having custom services using these constants.
|
|
|
|
|
|
Migration
|
|
=========
|
|
|
|
Use the class constants provided within :php:`TYPO3\CMS\Core\Service\AbstractService`.
|
|
|
|
.. index:: PHP-API, FullyScanned
|