- Notifications
You must be signed in to change notification settings - Fork0
TYPO3 extension Flux: Dynamic Fluid FlexForms
Oktopuce/flux
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Flux automates integration of Fluid with TYPO3 and makes Fluid the entry point for developers. The name "Flux" hasmultiple meanings but in this context, it mainly refers to the gel-like fluid used when soldering components togetherin electronic hardware, making it easier to create a bond between components and improves the durability of the bond.
Flux has two main purposes:
- Allow developers to configure TYPO3's page templates and add custom content types using Fluid templates, withoutthe need for detailed knowledge about how TYPO3 usually requires such setup to be done.
- Allow embedding of metadata such as which fields to show when editing a content element, descriptions of thecontent or page template, and more.
Bonus feature: nested content areas to create content grids.
Flux has two main modes of operation - either you allow Flux to automatically create a site-wide "design" folder tocontain your template files, which provides a 100% out of the box experience. Or you prefer to have a more advanced andcontrolled integration, in which case you disable the automatic creation of site-wide template folders and provide yourown (through an extension).
The automatic mode of operation is the default.This means Flux is an ideal starting point if you have zero knowledgeabout how to set up TYPO3. You can start with the automation and as you learn more about TYPO3, you can refine yourintegration and continuously improve how it works. Or keep using the automation in case it fits all your needs.
To get started you only need to know how to install a TYPO3 extension either with Composer or for non-Composer sites,using the Extension Manager.
Flux has multiple ways to store your page- and content templates (which are also type definitions):
- Fully automated through the site-wide "design" folder in the public root. This integration is easiest to use butforces your templates to render in Flux's context, and does not facilitate complex setups such as extension specificasset storage, and is not as portable as other methods - on the other hand it works immediately out of the box.Ideal for simple single-domain sites and gets you started in just a few minutes.
- Extension-specific, meaning you use a TYPO3 extension (written by yourself) to store all page- and content templatesand additional resources such as translations, icons, and so on. This method is the most portable, meaning you canpackage your entire site templating in an extension that you can reuse, and is the only method which allows you toalso ship PHP classes (ViewHelpers, for example) along with your site templates.
- For content types specifically, you can define new types using root-level database records (one per type). Thismethod is possible to use completely without touching the file system, but has a lesser degree of portability. Youcan use this method to quickly create prototypes of content types using a more visual approach (through TYPO3 forms).This method also has an exporting feature which allows you to generate the necessary Fluid template that can then beused with either of the other methods.
Methods 1 and 3 are intended to get you started as quickly as possible. Method 2 is intended to serve more custom setupswhich ship more than just site templates, through use of a custom TYPO3 extension.
All three methods can be combined or used individually.
Recommended!
composer req fluidtypo3/flux./vendor/bin/typo3 extension:install flux# alternatively, instead of extension:install, activate in Extension Manager backend module
NOT recommended!
- In the Extension Manager backend module, search for
flux
- Choose to install the result with the extension key
flux
- There is no required setup to use Flux content types (but you almost certainly need to install
fluid_styled_content
to be able to render any content at all). - To use page templates without a content grid (which assumes you defined a grid with pageTSconfig or other) you onlyneed to select the template to use in
Page Layout
when editing a page (start with the top page). - If your page template additionally contains a grid, you must also select
Columns from selected "Page Layout"
as thevalue of the twoBackend Layout
fields in theAppearance
tab.
The remaining setup of labels, form fields, grid composition etc. can all be done from within your Fluid templates.
When Flux is installed and enabled in extension manager, and if automatic creation of site-wide Flux templates isenabled (which it is by default), the following happens automatically:
- A folder named
design
is created in the public directory (this directory may differ between TYPO3 versions and canbe changed with configuration, but in most recent TYPO3 versions it ispublic
in the project public folder). - This folder is filled with a set of skeleton templates containing very basic embedded Flux metadata.
- The file created in
design/Templates/Page
can be selected as page template (Flux adds aPage Layout
tab to pages'editable properties). - The file created in
design/Templates/Content
becomes a custom content type which can be inserted just like thestandard TYPO3 content types that create text, image, etc.
Renaming, removing or adding files in these folders automatically registers the file as either page template or contenttype, depending on location.Be careful when renaming or removing files: if the page- or content template is alreadyin use this may break your system until you choose another page template and disable/delete removed or renamed contenttypes. There is no warning given about types that are in use!
From that point on, you can create a completely styled site with custom content types to make sliders etc. using yourfavorite frontend framework (or none) - and you only need to know very basic Fluid (an XML based markup engine whichcomes with automatically rendered documentation for every tag you can use).
Flux does not remove the need to learn "the TYPO3 way" of doing things - you should still aim to learn more about howTYPO3 works. Flux only makes it quicker to get started and provides a reasonable level of automation; complex sites willalmost surely still require you to learn a bit about TYPO3 (such as, how to modify the<meta>
section and how to usethird party plugins for news etc.)
Flux is also not a replacement for things likefluid_styled_content
(although it can work without it) - Flux createscustom content types, it does not replace TYPO3's native content types (although you can hide those and use only yourcustom types).
Lastly, Flux only has limited abstraction over how you define form fields. To know all the specific details of what eachtype of field does, you still need to know TYPO3's "TCA" (which is thoroughly documented). Flux tries as far as possibleto use the same names of form field attributes as TCA. If you don't understand an attribute or aren't sure which fieldtype to use, always consult the TCA documentation (keeping in mind not all field types will work: Flux fields are basedon FlexForm fields. When FlexForm does not support a field type it is noted so in the TCA documentation).
VHS is another extension in the FluidTYPO3 family, which is highly recommended to use along with Flux. The reason VHS ismentioned here, is that it provides alternatives to TypoScript-based content- and menu-rendering instructions, allowingyou to instead use Fluid.
Given that in particular menu rendering setup in TypoScript is notoriously difficult (due to a very old structure whichhas basically never changed), beginners may prefer to use a special XHTML tag and either a few CSS class properties, ora custom loop to output menu items and their links.
Flux lets you build and modify forms in Fluid, which become form fields in the form that edits content/page propertiesthrough the TYPO3 backend:
<flux:formid="myform"> <flux:field.inputname="myField"label="My special field" /></flux:form>
Flux also lets you build a grid for content elements (nested content areas):
<flux:grid> <flux:grid.row> <flux:grid.columncolPos="0"name="main"label="Main content area" /> </flux:grid.row></flux:form>
Flux is then capable of extracting these embedded structures to read form fields, labels, content grids, backend previewoutput, and more - in short, your template files embed the instructions on how to both integrate and render templates.
As you create more complex projects they usually have more complex requirements - which may still benefit from Fluxfeatures such as a way to create Flux forms for custom plugins. Since Flux works by increasingly abstracting the API ofTYPO3 core features (with the Fluid "flavor" as the most condensed and abstracted) Flux also declares these increasinglyflexible layers of abstraction as public API.
This means Flux also has a good old PHP way to declare forms and so on:
$form = \FluidTYPO3\Flux\Form::create();$form->setName('myform');$form->createField('Input','myField','My special field');
And supports plain arrays (to allow sources like JSON):
$json ='{name: "myform", fields: [{"name": "myField", "type": "Input"}]}';$asArray =json_decode($json,JSON_OBJECT_AS_ARRAY);$form = \FluidTYPO3\Flux\Form::create($asArray);
And can use TypoScript:
plugin.tx_flux.providers { myextension_myplugin { tableName = tt_content fieldName = pi_flexform listType = myextension_myplugin extensionKey = Vendor.MyPlugin form { name = myform fields { myField { type = Input label = My special field } } } }}
All of which create the same form with a single input field calledmyField
with a label value ofMy special field
. The lastexample shows theform
structure nested in a Provider (another Flux concept) which connects thepi_flexform
field of therelatedtt_content
plugin record type to the form.
- Added features for content elements - add content grids (following the
backend_layout
approach) to any content/plugin. - Multiple APIs to access the same features from many different contexts using the same naming and nesting style.
- Multiple levels of API abstraction - when you need more control, lower API abstraction levels can be used in your code.
- Flexible ways to replace individual parts: templates, controller actions, etc.
- Manipulation of properties of existing forms - change field labels, default values, add fields, sheets, etc.
- Data type transformations - define the desired target type and let the TypeConverters of Extbase handle conversion.
- Possibility for custom components of your own - with the same API support any other Flux component has.
- Several Utility-type classes for advanced integrations with Fluid in particular.
- Keep In mind to have your PHP/HTTP configured correctly to accept a fairly large number of input fields. When nestingsections / objects the number of fields submitted, rises drastically. The
php.ini
configuration setting to think about ismax_input_vars
. If this number is too small then the TYPO3 Backend (being PHP) will decline the submission of thebackend editing form and will exit with an "Invalid CSRF Token" message because of incomplete (truncated)POST
data.
About
TYPO3 extension Flux: Dynamic Fluid FlexForms
Resources
Stars
Watchers
Forks
Packages0
Languages
- PHP98.5%
- Other1.5%