- Notifications
You must be signed in to change notification settings - Fork0
TYPO3 extension Flux: Dynamic Fluid FlexForms
JanStorm/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.
Flux is capable of transforming the values of fields before assigning the values as template variables. You can use this toensure that the variables in your templates have the correct types - and you can also use it as a quick way to transformfor example a selected foreign record to an instance of the domain model. Consider the following example:
<flux:formid="myform"> <flux:field.inputname="myField"label="My special field"transform="boolean" /></flux:form>
When Flux renders the template that contains this form, the variable{myField}
will be converted to a proper boolean.
The following transformation types are built-in:
string
integer
(alias:int
)boolean
(alias:bool
)array
(will explode value by commas, e.g.a,b,c
becomes['a', 'b', 'c']
)float
(alias:decimal
anddouble
)file
filereference
files
filereferences
Thefile
etc. types will convert file references added through an IRRE FAL field to either aFile
orFileReference
object, or an array of such objects if you use the plural forms.
You can also specify a class name of a Domain Model as thetransform
type. Flux will then attempt to use the matchingRepository to load a single instance of that Domain Model. The value saved in the DB must be an integeruid
of therelated object (for example, theflux:field.relation
field type will save such a value). If you need multiple instancesfrom a multiple selection field (likeflux:field.multiRelation
) you must use a compound transform type like:
transform="\TYPO3\CMS\Extbase\Persistence\ObjectStorage<\My\Extension\Domain\Model\MyObject>"
Or you can use a custom container class instead of ObjectStorage, for example if you have an Iterator that sorts objectsin a certain way. The container class will receive an array of the domain model instances as first constructor argument.
transform="\My\Extension\Iterator\SpecialSorter<\My\Extension\Domain\Model\MyObject>"
Or you can specify any class which takes a constructor argument. Flux will then create an instance of the specified classwith the database value as constructor argument. For example, using\DateTime
as transform type and having a value ofnow
in the database results in aDateTime
instance with the current date+time:
transform="\DateTime"
Finally you can also create an implementation ofFluidTYPO3\Flux\Form\Transformation\DataTransformerInterface
whichcan support any type of data transformation:
<?phpnamespaceMy\Extension\Transformation;useFluidTYPO3\Flux\Attribute\DataTransformer;useFluidTYPO3\Flux\Form\ContainerInterface;useFluidTYPO3\Flux\Form\FieldInterface;useFluidTYPO3\Flux\Form\FormInterface;useFluidTYPO3\Flux\Form\Transformation\DataTransformerInterface;/* PHP 8.0 registration with class attribute. ID must be unique! */#[DataTransformer('myextension.datatransformer.mytransform')]class MyTransformerimplements DataTransformerInterface{publicfunctioncanTransformToType(string$type):bool {// Support transform of any type that begins with "myextension:"returnstrpos($type,'myextension:') ===0; }publicfunctiongetPriority():int {// Higher priority means your DataTransformer is checked before others with lower priority.return10; }/** * @var FieldInterface|ContainerInterface $component * @var mixed $value * @return mixed */publicfunctiontransform(FormInterface$component,string$type,$value) {$converted =null;switch ($type) {case'myextension:foo':$converted ='call something to transform $value to one type';break;case'myextension:bar':$converted ='call something else to transform $value to another type';break; }return$converted; }}
The above class would support bothtransform="myexternsion:foo"
andtransform="myextension:bar
through the same class.Obviously a DataTransformer can also support just a single type.
You can override other DataTransformers or give priority to your own DataTransformer if it supports the same type as othertransformers, by returning a higher number from thegetPriority
method.
Special note about PHP 7.4
Since PHP 7.4 does not support attributes like PHP 8.0 and above, you'll need to manually specify a DI tag for your class,inConfiguration/Services.yaml
of your extension:
services:_defaults:autowire:trueautoconfigure:truepublic:falseMy\Extension\:resource:'../Classes/*'My\Extension\Transformation\MyTransformer:tags: -name:flux.datatransformeridentifier:'myextension.datatransformer.mytransform'
This is not necessary on PHP 8.0+ because the DI container will scan for the#[DataTransformer('id')]
attribute andautomatically tag your class as a DataTransformer for Flux.
- 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. - When working with custom Provider classes: 1) make sure you declare each Provider class as
public: true
in Serviceconfig of your extension. And 2) if the Provider needs to be used for more than one specific page/content/record type,make sure you also declare the Provider asshared: false
. You can find an example of such configuration in theConfiguration/Services.yaml
file in Flux. - When working with custom Controller classes, make sure you declare each Controller class as
public: true
in Serviceconfig of your extension. - Note that both Providers and Controllers use constructor injection of dependencies. If you use custom Controllers and/orProviders and these override the
__construct
method, make sure that they take the same arguments as the parent class andthat you callparent::__construct()
with those arguments from your overridden__construct
method.
About
TYPO3 extension Flux: Dynamic Fluid FlexForms
Resources
Stars
Watchers
Forks
Packages0
Languages
- PHP98.5%
- Other1.5%