TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,37 @@
.. include:: /Includes.rst.txt
.. _deprecation-82609:
=============================================
Deprecation: #82609 - Deprecate TYPO3.Utility
=============================================
See :issue:`82609`
Description
===========
The public property :js:`TYPO3.Utility` has been marked as deprecated. `Utility` may be used in AMD based modules by
importing :js:`TYPO3/CMS/Backend/Utility` instead.
Affected Installations
======================
All extensions using :js:`TYPO3.Utility` are affected.
Migration
=========
Import :js:`TYPO3/CMS/Backend/Utility` in your AMD module.
Example code:
.. code-block:: javascript
define(['TYPO3/CMS/Backend/Utility'], function(Utility) {
// use Utility here
});
.. index:: JavaScript, Backend, NotScanned