A new functionality is introduced in the HtmlParser that allows the stripping of empty HTML tags.
-It can be used in the Frontend by using the :ref:`HTMLparser<t3tsref:htmlparser>` TypoScript
-configuration of :ref:`stdWrap<t3tsref:stdwrap-htmlparser>`:
+It can be used in the Frontend by using the :ref:`HTMLparser <t3tsref:htmlparser>` TypoScript
+configuration of :ref:`stdWrap <t3tsref:stdwrap-htmlparser>`:
.. code-block:: typoscript
}
It is also possible to use it in the
-:ref:`HTMLparser_rte or HTMLparser_db<transformations-tsconfig-processing-htmlparser>`
+:ref:`HTMLparser_rte or HTMLparser_db <t3api:transformations-tsconfig-processing-htmlparser>`
in Page TSconfig:
.. code-block:: typoscript
This requires the class `Item` and its method `getItem()` in EXT:extension\Classes\SystemInformation\Item.php:
.. code-block:: php
+
class Item {
public function getItem() {
return array(array(
The icon `extensions-example-information-icon` must be registered in ext_localconf.php:
.. code-block:: php
+
\TYPO3\CMS\Backend\Sprite\SpriteManager::addSingleIcons(
array(
'information-icon' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extRelPath($_EXTKEY) . 'Resources/Public/Images/Icons/information-icon.png'
This requires the class `Message` and its method `getMessage()` in EXT:extension\Classes\SystemInformation\Message.php:
.. code-block:: php
+
class Message {
public function getMessage() {
return array(array(
where the files are put. To set up the third-party libraries and their dependencies, execute the following
command.
-.. code-block::
+.. code-block:: text
bower install
As a fix for wrong mimeType detection for SVG files without XML prologue we added a new setting to map known file extensions to mimeTypes.
The new setting is ``$GLOBALS['TYPO3_CONF_VARS']['SYS']['FileInfo']['fileExtensionToMimeType']`` which contains an array:
-.. code-block::
+.. code-block:: php
array(
'svg' => 'image/svg+xml'
--- /dev/null
+7.2 Changes
+===========
+
+**Table of contents**
+
+.. contents::
+ :local:
+ :depth: 1
+
+Breaking Changes
+^^^^^^^^^^^^^^^^
+
+.. toctree::
+ :maxdepth: 1
+ :titlesonly:
+ :glob:
+
+ Breaking-*
+
+Features
+^^^^^^^^
+
+.. toctree::
+ :maxdepth: 1
+ :titlesonly:
+ :glob:
+
+ Feature-*
+
+Deprecation
+^^^^^^^^^^^
+
+.. toctree::
+ :maxdepth: 1
+ :titlesonly:
+ :glob:
+
+ Deprecation-*
+
Changelog/7.0/Index
Changelog/7.1/Index
+ Changelog/7.2/Index
How to contribute
=================
project: Core ChangeLog
version: 7
release: 7
+ intersphinx_mapping:
+ t3tsref:
+ - http://docs.typo3.org/typo3cms/TyposcriptReference/
+ - null
+ t3api:
+ - http://docs.typo3.org/typo3cms/CoreApiReference/
+ - null
...