Introduction to Fluid
Fluid is TYPO3’s default rendering engine but can also be used in standalone PHP projects. The Fluid source code is being developed as an independent project outside of the TYPO3 Core.
Fluid is based on XML and you can use HTML markup in Fluid.
Fluid ViewHelpers can be used for various purposes. Some transform data, some include Partials, some loop over data or even set variables. You can find a complete list of them in the ViewHelper Reference.
You can write your own custom ViewHelper, which is a PHP component.
Example Fluid snippet
This is how a simple Fluid snippet could look like:
<h4>This is your headline</h4>
<p>
<f:if condition="{myExpression}">
<f:then>
{somevariable}
</f:then>
<f:else>
{someothervariable}
</f:else>
</f:if>
</p>
The resulting HTML may look like this:
<h4>This is your headline</h4>
<p>This is the content of variable "somevariable"</p>
The above Fluid snippet contains:
- ViewHelpers:
-
The XML elements that start with
f:
like<f:
etc. are standard ViewHelpers. It is also possible to define custom ViewHelpers, for exampleif> <foo:
. A corresponding filebar foo="bar"> View
with the methodsHelpers/ Bar View Helper. php initialize
andArguments render
contains the HTML generation logic. ViewHelpers are Fluid components which make a function call to PHP from inside of a template. TYPO3 adds some more ViewHelpers for TYPO3 specific functionality.ViewHelpers can do simple processing such as remove spaces with the Spaceless ViewHelper <f:spaceless> ViewHelper or create a link as is done in the TYPO3 Fluid Viewhelper Link.page ViewHelper <f:link.page>.
- Expressions, variables:
- Fluid uses placeholders to fill content in specified areas in the template
where the result is rendered when the template is evaluated. Content within
braces (for example
{somevariable}
) can contain variables or expressions. - Conditions:
- The conditions are supplied here by the If ViewHelper <f:if> ViewHelper.
Directory structure
In your extension, the following directory structure should be used for Fluid files:
-
-
-
-
-
All layouts go here
-
-
-
All partials go here
-
-
-
All templates go here
-
-
-
-
This directory structure is the convention used by TYPO3. When using Fluid outside of TYPO3 you can use any folder structure you like.
If you are using Extbase controller actions in combination with Fluid, Extbase defines how files and directories should be named within these directories. Extbase uses sub directories located within the "Templates" directory to group templates by controller name and the filename of templates to correspond to a certain action on that controller.
-
-
-
-
-
-
List.html (for Blog->list() action)
-
Show.html (for Blog->show() action)
-
-
-
-
-
If you don't use Extbase you can still use this convention, but it is not a requirement to use this structure to group templates into logical groups, such as "Page" and "Content" to group different types of templates.
In Fluid, the location of these paths is defined with
\TYPO3Fluid\
.
TYPO3 provides the possibility to set the paths using TypoScript.
Templates
The template contains the main Fluid template.
Layouts
optional
Layouts serve as a wrapper for a web page or a specific block of content. If using Fluid for a sitepackage, a single layout file will often contain multiple components such as your sites menu, footer, and any other items that are reused throughout your website.
Templates can be used with or without a layout.
- With a Layout
- anything that's not inside a section is ignored. When a Layout is used, the Layout determines which sections will be rendered from the template through the use of the Render ViewHelper <f:render> in the layout file.
- Without a Layout
- anything that's not inside a section is rendered. You can still use sections of course, but you then must use Render ViewHelper <f:render> in the template file itself, outside of a section, to render a section.
For example, the layout may like this
<div class="header">
<f:render section="Header" />
</div>
<div class="main">
<f:render section="Main" />
</div>
The layout defines which sections are rendered and in which order. It can contain additional arbitrary Fluid / HTML. How you name the sections and which sections you use is up to you.
The corresponding template should include the sections which are to be rendered.
Partials
optional
Some parts within different templates might be the same. To not repeat this part in multiple templates, Fluid offers so-called partials. Partials are small pieces of Fluid template within a separate file that can be included in multiple templates.
Partials are stored, by convention, within Resources/
.
Example partial:
Example template using the partial:
<f:render partial="Tags" arguments="{tags: post.tags}" />
The variable
post.
is passed to the partial as variable
tags
.
If ViewHelpers from a different namespace are used in the partial, the namespace import can be done in the template or the partial.
Example: Using Fluid to create a theme for a site package
This example was taken from a theme created by the Site Package Builder and reduced to a very basic example.
See also
- If you want to try this out, you can Generate a site package with the official builder.
- The Site package tutorial describes the usage of the templates step by step.
-
-
Configuration/Sets/SitePackage/setup.typoscript
-
-
-
PageLayout.html
-
-
-
Content.html
-
Footer.html
-
...
-
-
-
Default.html
-
Subpage.html
-
-
-
Set the Fluid base path with TypoScript using the PAGEVIEW TypoScript object.
page = PAGE
page {
10 = PAGEVIEW
10 {
paths {
0 = EXT:my_site_package/Resources/Private/PageView/
10 = {$MySitePackage.template_path}
}
dataProcessing {
# makes content elements available as {content} in Fluid template
10 = page-content
}
}
}
The template in file Pages/
is automatically used whenever there is
no specific template for the current Backend layout of the page.
<f:layout name="PageLayout"/>
<f:section name="Main">
<div class="container">
<f:render partial="Content" arguments="{records: content.main.records}"/>
</div>
</f:section>
It includes the layout Layouts/
. And uses partial
Partials/
to display its content.
It uses the partial Partials/
to display its content.
<f:for each="{records}" as="record">
<f:cObject
typoscriptObjectPath="{record.mainType}"
data="{record}"
table="{record.mainType}"
/>
</f:for>
The template for a different backend layout will look similar, but has for example two columns:
<f:layout name="PageLayout"/>
<f:section name="Main">
<div class="container">
<div class="row">
<div class="col-md-8">
<f:render partial="Content" arguments="{records: content.main.records}"/>
</div>
<div class="col-md-4">
<f:render partial="Content" arguments="{records: content.sidebar.records}"/>
</div>
</div>
</div>
</f:section>
The page layout takes care of elements that are shared across all or most page types: