.. include:: /Includes.rst.txt
.. _cb_templating:
==========
Templating
==========
The following examples are for templating with Fluid. Content Blocks brings some
additional features like own variables and ViewHelpers with it.
Accessing variables
===================
Inside your `frontend.html` or `backend-preview.html` file you can access the
properties of your Content Element as usual by the :html:`{data}` variable.
This variable, however, is special. It has real superpowers!
In contrast to the usual array, we are dealing with an object here. This allows
us to magically access our own custom properties very easily. Normally you would
access the processed properties. This is done by simply accessing the desired
property like :html:`{data.header}`. The raw properties have to be accessed by
:html:`{data.rawRecord.some_field}`.
All fields with relations are resolved automatically to an array. This includes
`Collection`, `Select`, `Relation`, `File`, `Folder`, `Category` and `FlexForm`
fields. There is no need to provide additional DataProcessors for them.
Content Blocks applies relation resolving for you (recursively!).
Have a look at this code example to grasp what's possible:
.. code-block:: html
{data.title}
{data.uid}
{data.pid}
{item.title}
{category.title}
{data.languageId}
{data.languageInfo.translationParent}
{data.languageInfo.translationSource}
{data.overlaidUid}
{data.mainType}
{data.recordType}
{data.fullType}
{data.systemProperties.deleted}
{data.systemProperties.disabled}
{data.systemProperties.lockedForEditing}
{data.systemProperties.createdAt}
{data.systemProperties.lastUpdatedAt}
{data.systemProperties.publishAt}
{data.systemProperties.publishUntil}
{data.systemProperties.userGroupRestriction}
{data.systemProperties.sorting}
{data.systemProperties.description}
{data.computedProperties.versionedUid}
{data.computedProperties.localizedUid}
{data.computedProperties.requestedOverlayLanguageId}
{data.computedProperties.translationSource}
{data.versionInfo.workspaceId}
{data.versionInfo.liveId}
{data.versionInfo.state.name}
{data.versionInfo.state.value}
{data.versionInfo.stageId}
{data.rawRecord.some_field}
See also: https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/13.2/Feature-103783-RecordTransformationDataProcessor.html#usage-in-fluid-templates
.. note::
Note that we are omitting `_processed` when accessing properties, even
though you might think this would be correct due to the debug output.
Frontend & backend
==================
Content Blocks allows you to provide a separate template for the frontend and
the backend out of the box. The variables are the same for both templates, and
while using the asset ViewHelpers, you can also ship JavaScript and CSS as you
need. The main goal behind this is, that you can provide a better user
experience for the editors. With this feature, there is the possibility to
provide nearly the same layout in the frontend and the backend, so the editors
easily find the element they want to edit.
The frontend template is located in **templates/frontend.html** and the backend
template in **templates/backend-preview.html**.
.. _asset_view_helpers:
Asset ViewHelpers
=================
Content Blocks provides a new AssetPathViewHelper to access assets from within
the current Content Block in the template.
.. code-block:: html
The information of the current Content Block is stored in :html:`{data}`. This
means if you use an asset ViewHelper in a partial, you have to provide
:html:`{data}` as an argument to that partial. Alternatively, you can set
:html:`name` by hand:
.. code-block:: html
.. _language_path_view_helper:
LanguagePath ViewHelper
=======================
Content Blocks provides a LanguagePathViewHelper to retrieve the LLL-path for
the labels.xlf file of the current Content Block.
.. code-block:: html
As described above in the asset ViewHelper, the :html:`{data}` variable is
required to resolve the Content Block automatically. You can also set
:html:`name` by hand:
.. code-block:: html
Partials
========
Partials are a very useful feature of Fluid. You can use them to split up your
templates into smaller parts. If you want to use a partial in a Content Block,
you can create a subdirectory **partials** in the **templates** directory and place
your partials there.
This part is automatically added, but you can also
:ref:`extend or overwrite ` this TypoScript configuration
in your sitepackage.
Remember, that you should ship the :html:`{data}` variable to the partial if you
want to make use of automatic detection of the current Content Block.
.. code-block:: html
See also:
* :ref:`Shared partials `
Layouts
=======
Analogous to partials, you can also use layouts. You can create a subdirectory
`layouts` in the `templates` directory and place your layouts there. The
configuration is added automatically, but you can also extend or overwrite the
TypoScript configuration in your sitepackage. Afterwards you can use your
layouts as usual in Fluid.
Shareable resources
===================
There is the technical possibility to use resources from the whole TYPO3 setup
(e.g. translations, scripts, or partials from other extensions), but we do not
recommend to do so. Content Blocks are intended to work independent of external
resources so they can be easily copy-pasted between projects. Be aware of this
downside, when you add dependencies to your Content Block.