.. include:: /Includes.rst.txt
.. _ConfigureCE-Preview:
====================================================
Configure custom backend preview for content element
====================================================
To allow editors a smoother experience, all custom content elements and plugins
should be configured with a corresponding backend preview that shows an
approximation of the element's appearance in the TYPO3 page module. The
following sections describe how to achieve that.
A preview renderer is used to facilitate (record) previews in TYPO3. This
class is responsible for generating the preview and the wrapping.
Writing a PreviewRenderer
=========================
A custom preview renderer must implement the interface
:php:`\TYPO3\CMS\Backend\Preview\PreviewRendererInterface` which contains
the following API methods:
.. include:: /CodeSnippets/Manual/Backend/PreviewRendererInterface.rst.txt
Implementing these methods allows you to control the exact composition of the
preview.
This means assuming your preview renderer returns :html:`
Header
`
from the header render method and :html:`Body
` from the preview content
rendering method and your wrapping method does
:php:`return '' . $previewHeader . $previewContent . '
';` then the
entire output becomes :html:`` when
combined.
Should you wish to reuse parts of the default preview rendering and only change,
for example, the method that renders the preview body content, you can extend
:php:`\TYPO3\CMS\Backend\Preview\StandardContentPreviewRenderer` in your custom
preview renderer class - and selectively override the methods from the API
displayed above.
Configuring the implementation
==============================
Individual preview renderers can be defined by using one of the following
approaches:
.. rst-class:: bignums
#. Any record
.. code-block:: php
$GLOBALS['TCA'][$table]['ctrl']['previewRenderer']
= MyVendor\MyExtension\Preview\MyPreviewRenderer::class;
This specifies the preview renderer to be used for any record in :php:`$table`.
#. Table has a type field/attribute
.. code-block:: php
$GLOBALS['TCA'][$table]['types'][$type]['previewRenderer']
= MyVendor\MyExtension\Preview\MyPreviewRenderer::class;
This specifies the preview renderer only for records of type :php:`$type` as
determined by the type field of your table.
#. Table and field have a :php:`subtype_value_field` TCA setting
If your table and field have a :php:`subtype_value_field` TCA setting (like
:php:`tt_content.list_type` for example) and you want to register a preview
renderer that applies only when that value is selected (assume, when a
certain plugin type is selected and you can't match it with the "type" of
the record alone):
.. code-block:: php
$GLOBALS['TCA'][$table]['types'][$type]['previewRenderer'][$subType]
= MyVendor\MyExtension\Preview\MyPreviewRenderer::class;
Where :php:`$type` is, for example, :php:`list` (indicating a plugin) and
:php:`$subType` is the value of the :php:`list_type` field when the type of
plugin you want to target is selected as plugin type.
.. note::
The :ref:`recommended location ` is in the
:php:`ctrl` array in your extension's :file:`Configuration/TCA/$table.php`
or :file:`Configuration/TCA/Overrides/$table.php` file. The former is used
when your extension is the one that creates the table, the latter is used
when you need to override TCA properties of tables added by the Core or
other extensions.
.. note::
The content elements :php:`text`, :php:`textpic`, :php:`textmedia` and
:php:`image` have their own :php:`PreviewRenderer`. Therefore it's not
sufficient to overwrite the :php:`StandardContentPreviewRenderer` but
you need to use the second approach from above for every single of
these content elements.