.. 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 `EditorPreview.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. Let's have a look at the debug output of it: .. code-block:: text TYPO3\CMS\ContentBlocks\DataProcessing\ContentBlockData [prototype] [object] _raw => [private] array(85 items) _processed => [private] array(8 items) uid => 24 (integer) pid => 1 (integer) languageId => 0 (integer) typeName => 'example_element1' (16 chars) updateDate => 1694625077 (integer) creationDate => 1694602137 (integer) header => 'Foo' (3 chars) As you can see, 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. The object consists of two properties `_raw` and `_processed`. As the names suggest, the one is raw and unprocessed and the other one has magic applied from Content Blocks. Normally you would access the processed properties. This is done by simply accessing the desired property like :html:`{data.header}`. Note, that we are omitting `_processed` here. This is important to remember, as this would access a custom field named `_processed`. On the other hand, the raw properties have to be accessed by :html:`{data._raw.some_field}`. But most of the time you shouldn't need them. 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.my_field} {item.title} {category.title} {data.uid} {data.pid} {data.typeName} {data.languageId} {data.creationDate} {data.updateDate} {data.localizedUid} {data.originalUid} {data.originalPid} {data._raw.some_field} 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 **Source/Frontend.html** and the backend template in **Source/EditorPreview.html**. .. _asset_view_helpers: Asset ViewHelpers ================= Content Blocks provides new asset ViewHelpers to access assets from within the current Content Block in the template. These ViewHelpers look for the given file in the `Assets` directory. .. 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 Resource URI ViewHelper ======================= The ViewHelper can be used to generate a URI relative to the Assets folder. .. code-block:: html To generate an absolute URI, activate the :html:`absolute` parameter. .. 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 Translation ViewHelper ====================== This ViewHelper looks directly in the `Labels.xlf` file for the given key. .. 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 **Source** 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 `Source` 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.