Skip to main content
FluidTYPO3 home
Documentation
Library
Donate
Search
☾
Templating Manual
Templating Manual
ViewHelper Reference
4.2.1
Use cases for custom Providers
A Provider is a class which: 1. Is always associated with one database table, fx tt content or pages or your custom tables. 2. Is resolved through Flux whenever a record from that table is edited, moved, saved, deleted, rendered etc. 3…
4.2.2
Provider features
The Provider class features all revolve around class methods which you can override as needed. These methods can be divided up into four specific groups of methods with similar responsibilities: Integration Templates Records Components…
4.2.3
Creating Providers
In order to define which DB table name and which field name (if any) your Provider should connect with, use the class properties you see in AbstractProvider named tableName , fieldName and so on. For example, Flux's ContentProvider connects…