SlideShare uma empresa Scribd logo
1 de 30
FormZ • typo3-formz.com 1github.com/romm/formz → go and ★ it!
TYPO3 FormZ
A modern form handler for extensions
FormZ • typo3-formz.com 2github.com/romm/formz → go and ★ it!
Romain Canon
PHP developer on TYPO3 since 2012
Currently living in Paris
@Rommsteinz
romain.hydrocanon@gmail.com
@romm
FormZ • typo3-formz.com 3github.com/romm/formz → go and ★ it!
Summary
• What and why?
• How?
• Demo
• Next?
FormZ • typo3-formz.com 4github.com/romm/formz → go and ★ it!
What is FormZ?
• A TYPO3 extension (TER, Packagist, GitHub)
• A strong API for building web-forms with Extbase & Fluid
• Time saving tool for developers and integrators
FormZ • typo3-formz.com 5github.com/romm/formz → go and ★ it!
Why FormZ?
• My customer needed a powerful and modern form manager for
dozens of forms (simulations, registration, “business”, contact)
• EXT:formhandler?
• Old and not maintained a lot (not maintained anymore, since september 2016)
• PI-based with no Fluid support
• No frontend JavaScript validation
• EXT:powermail?
• Too “specific”
FormZ • typo3-formz.com 6github.com/romm/formz → go and ★ it!
“Eh dude, TYPO3 v8 provides a brand new form builder!”
• Development of both extensions probably began at the same time
No communication led to two separate projects
• The new form builder is for TYPO3 8.7; we needed something for
TYPO3 6.2
FormZ • typo3-formz.com 7github.com/romm/formz → go and ★ it!
“Eh dude, TYPO3 v8 provides a brand new form builder!”
• Main target audience:
• EXT:form
→ For editors/integrators
→ Simple forms with no complex business rules
→ Powerful UI to manage the basic rules of the forms
• EXT:formz
→ For developers/integrators
→ Can handle huge forms with lots of business rules
→ Built by a developer for developers: easy to understand, maintain,
evolve
FormZ • typo3-formz.com 8github.com/romm/formz → go and ★ it!
What does FormZ provide?
FormZ • typo3-formz.com 9github.com/romm/formz → go and ★ it!
TypoScript based configuration
• Easy inheritance
config.tx_formz {
forms {
RommFormzExampleFormExampleForm {
fields {
name {
validation {
required < config.tx_formz.validators.required
}
}
email {
validation {
required < config.tx_formz.validators.required
isEmail < config.tx_formz.validators.email
}
}
}
}
}
}
FormZ • typo3-formz.com 10github.com/romm/formz → go and ★ it!
TypoScript based configuration
• Easy overriding
config.tx_formz {
forms {
RommFormzExampleFormExampleForm {
fields {
gender {
validation {
required < config.tx_formz.validators.required
isValid < config.tx_formz.validators.containsValues
isValid {
messages {
default.value = Please select a correct value!
}
options {
values {
10 = male
20 = female
}
}
}
}
}
}
}
}
}
FormZ • typo3-formz.com 11github.com/romm/formz → go and ★ it!
TypoScript based configuration
• Could be YAML or plain PHP (incoming!)
FormZ • typo3-formz.com 12github.com/romm/formz → go and ★ it!
Fluid templating
• Build you form however you want/need, by using the full power of
Fluid: partials, view helpers, conditions, etc.
FormZ • typo3-formz.com 13github.com/romm/formz → go and ★ it!
Fluid templating
• Benefit from built-in view helpers:
• Field layouts (native support for Twitter Bootstrap and Foundation)
• Automatic CSS classes (for valid/invalid status)
• More incoming!
FormZ • typo3-formz.com 14github.com/romm/formz → go and ★ it!
JavaScript frontend framework
• Instant custom validation for the user (not the ugly default HTML5
browser validation)
FormZ • typo3-formz.com 15github.com/romm/formz → go and ★ it!
JavaScript frontend framework
• All frontend validators have a PHP version
• JavaScript is not needed for FormZ to work well!
Server side validation will always run to ensure data security
FormZ • typo3-formz.com 16github.com/romm/formz → go and ★ it!
JavaScript frontend framework
• You can add your own custom JavaScript validators
FormZ • typo3-formz.com 17github.com/romm/formz → go and ★ it!
Multi language
• Easy translation handling
Customize validation messages
with TypoScript configuration
name {
validation {
required < config.tx_formz.validators.required
required.messages {
default {
key = example_form.error.name_required
extension = formz_example
}
}
}
}
firstName {
validation {
required < config.tx_formz.validators.required
required.messages {
default {
key = example_form.error.first_name_required
extension = formz_example
}
}
}
}
FormZ • typo3-formz.com 18github.com/romm/formz → go and ★ it!
Multi language
• Available in frontend
JavaScript automatically handles translated messages
FormZ • typo3-formz.com 19github.com/romm/formz → go and ★ it!
Robust condition system
• Choose specific situations where fields
should be activated
conditionList {
doesLikeIceCream {
type = fieldHasValue
fieldName = likeIceCream
fieldValue = 1
}
}
fields {
iceCreamFlavors {
activation.expression = doesLikeIceCream
}
}
FormZ • typo3-formz.com 20github.com/romm/formz → go and ★ it!
Robust condition system
• Choose specific situations
where validation should be
activated
conditionList {
countryIsFrance {
type = fieldHasValue
fieldName = country
fieldValue = FR
}
countryIsGermany {
type = fieldHasValue
fieldName = country
fieldValue = DE
}
}
fields {
phoneNumber {
validation {
frenchPhone {
className = MyValidatorFrenchPhoneValidator
activation.expression = countryIsFrance
}
germanPhone {
className = MyValidatorGermanPhoneValidator
activation.expression = countryIsGermany
}
}
}
}
FormZ • typo3-formz.com 21github.com/romm/formz → go and ★ it!
Robust condition system
• Understands logical operations
deliveryChoice {
activation.expression = zipCodeValid && addressValid && (countryIsFrance || countryIsGermany)
}
FormZ • typo3-formz.com 22github.com/romm/formz → go and ★ it!
Dynamic CSS data-attributes
• Automatically added to the <form> HTML tag
• Allows powerful CSS targeting using data-attributes
• fz-value-{field-name} / fz-valid-{field-name} / fz-error-{field-name}
• fz-loading
• More...
• Fully provided by FormZ core
• Works on frontend side (JavaScript) and server side (PHP/Fluid)
FormZ • typo3-formz.com 23github.com/romm/formz → go and ★ it!
Dynamic CSS classes
form[name="exForm"]:not([fz-value-email$="@typo3.org"]) .typo3-user {
display: none;
}
Basic example:
On a registration form: I want to display additional information for “official” TYPO3 users.
FormZ • typo3-formz.com 24github.com/romm/formz → go and ★ it!
Demo
FormZ • typo3-formz.com 25github.com/romm/formz → go and ★ it!
What is coming next?
FormZ • typo3-formz.com 26github.com/romm/formz → go and ★ it!
Middlewares
• Between the request and the controller
• A specific and powerful FormZ context
• Example: pre-fill form values, add complex
validation processes, save to database, send
an email, etc.
FormZ • typo3-formz.com 27github.com/romm/formz → go and ★ it!
Multi-steps form
• Supports separate pages
• Conditional steps
• Database/Session/Other persistence
FormZ • typo3-formz.com 28github.com/romm/formz → go and ★ it!
Substeps
• A new concept that allows pure JavaScript/CSS
step control, for an instant navigation
• Check: https://goo.gl/H6TT69
(https://www.direct-energie.com/particuliers/electricite/simulateur-de-consommation)
FormZ • typo3-formz.com 29github.com/romm/formz → go and ★ it!
More information/support
• Join #ext-formz on Slack!
You don’t have an account? Go on forger.typo3.org/slack
• typo3-formz.com
Official website
• typo3-formz.com/doc
Documentation FR/EN
PDF versions available!
FormZ • typo3-formz.com 30github.com/romm/formz → go and ★ it!
Thanks!

Mais conteúdo relacionado

Semelhante a TYPO3 FormZ

Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15ManuelSelbach
 
Scraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHPScraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHPPaul Redmond
 
Chapter 08 php advance
Chapter 08   php advanceChapter 08   php advance
Chapter 08 php advanceDhani Ahmad
 
Javascript Konsole für Entwicklung und Administration
Javascript Konsole für Entwicklung und AdministrationJavascript Konsole für Entwicklung und Administration
Javascript Konsole für Entwicklung und AdministrationAlfresco by fme AG
 
What is the Siemens Open Library, and How it Decreased Development Time for E...
What is the Siemens Open Library, and How it Decreased Development Time for E...What is the Siemens Open Library, and How it Decreased Development Time for E...
What is the Siemens Open Library, and How it Decreased Development Time for E...DMC, Inc.
 
Kostiantyn Grygoriev "Wrapping C++ for Python"
Kostiantyn Grygoriev "Wrapping C++ for Python"Kostiantyn Grygoriev "Wrapping C++ for Python"
Kostiantyn Grygoriev "Wrapping C++ for Python"LogeekNightUkraine
 
Javascript cross domain communication
Javascript cross domain communicationJavascript cross domain communication
Javascript cross domain communicationChenKuo Chen
 
APEX Behind the Scenes by Scott Spendolini
APEX Behind the Scenes by Scott SpendoliniAPEX Behind the Scenes by Scott Spendolini
APEX Behind the Scenes by Scott SpendoliniEnkitec
 
T3CON08 intelligent webforms with Typo3
T3CON08 intelligent webforms with Typo3T3CON08 intelligent webforms with Typo3
T3CON08 intelligent webforms with Typo3Rogier Hosman
 
Introduction to PHP - SDPHP
Introduction to PHP - SDPHPIntroduction to PHP - SDPHP
Introduction to PHP - SDPHPEric Johnson
 
Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...
Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...
Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...i-love-flamingo
 
Introduction to Office Development Topics
Introduction to Office Development TopicsIntroduction to Office Development Topics
Introduction to Office Development TopicsHaaron Gonzalez
 
POX to HATEOAS: Our Company's Journey Building a Hypermedia API
POX to HATEOAS: Our Company's Journey Building a Hypermedia APIPOX to HATEOAS: Our Company's Journey Building a Hypermedia API
POX to HATEOAS: Our Company's Journey Building a Hypermedia APILuke Stokes
 
TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015
TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015
TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015Rania Marou
 
Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Combell NV
 
Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...
Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...
Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...Precisely
 
Andrii Yatsenko "Make the most of Twig"
Andrii Yatsenko "Make the most of Twig"Andrii Yatsenko "Make the most of Twig"
Andrii Yatsenko "Make the most of Twig"Fwdays
 

Semelhante a TYPO3 FormZ (20)

Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15
 
unit1 part 1 sem4 php.docx
unit1 part 1 sem4 php.docxunit1 part 1 sem4 php.docx
unit1 part 1 sem4 php.docx
 
Scraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHPScraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHP
 
Make the most of twig
Make the most of twigMake the most of twig
Make the most of twig
 
Chapter 08 php advance
Chapter 08   php advanceChapter 08   php advance
Chapter 08 php advance
 
Javascript Konsole für Entwicklung und Administration
Javascript Konsole für Entwicklung und AdministrationJavascript Konsole für Entwicklung und Administration
Javascript Konsole für Entwicklung und Administration
 
What is the Siemens Open Library, and How it Decreased Development Time for E...
What is the Siemens Open Library, and How it Decreased Development Time for E...What is the Siemens Open Library, and How it Decreased Development Time for E...
What is the Siemens Open Library, and How it Decreased Development Time for E...
 
Kostiantyn Grygoriev "Wrapping C++ for Python"
Kostiantyn Grygoriev "Wrapping C++ for Python"Kostiantyn Grygoriev "Wrapping C++ for Python"
Kostiantyn Grygoriev "Wrapping C++ for Python"
 
Javascript cross domain communication
Javascript cross domain communicationJavascript cross domain communication
Javascript cross domain communication
 
APEX Behind the Scenes by Scott Spendolini
APEX Behind the Scenes by Scott SpendoliniAPEX Behind the Scenes by Scott Spendolini
APEX Behind the Scenes by Scott Spendolini
 
T3CON08 intelligent webforms with Typo3
T3CON08 intelligent webforms with Typo3T3CON08 intelligent webforms with Typo3
T3CON08 intelligent webforms with Typo3
 
Introduction to PHP - SDPHP
Introduction to PHP - SDPHPIntroduction to PHP - SDPHP
Introduction to PHP - SDPHP
 
Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...
Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...
Flamingo Microservice based E-Commerce / Motivations,Backgrounds, Short Intro...
 
Fork CMS
Fork CMSFork CMS
Fork CMS
 
Introduction to Office Development Topics
Introduction to Office Development TopicsIntroduction to Office Development Topics
Introduction to Office Development Topics
 
POX to HATEOAS: Our Company's Journey Building a Hypermedia API
POX to HATEOAS: Our Company's Journey Building a Hypermedia APIPOX to HATEOAS: Our Company's Journey Building a Hypermedia API
POX to HATEOAS: Our Company's Journey Building a Hypermedia API
 
TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015
TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015
TYPO3 - The Enterprise Open Source CMS - Rania Marou - FOSSCOMM 2015
 
Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10
 
Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...
Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...
Automate Studio Training: Materials Maintenance Tips for Efficiency and Ease ...
 
Andrii Yatsenko "Make the most of Twig"
Andrii Yatsenko "Make the most of Twig"Andrii Yatsenko "Make the most of Twig"
Andrii Yatsenko "Make the most of Twig"
 

Último

"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"growthgrids
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...Escorts Call Girls
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceDelhi Call girls
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...SUHANI PANDEY
 
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...nilamkumrai
 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...tanu pandey
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445ruhi
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...SUHANI PANDEY
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdfMatthew Sinclair
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdfMatthew Sinclair
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...nilamkumrai
 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...SUHANI PANDEY
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls DubaiEscorts Call Girls
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...tanu pandey
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC
 

Último (20)

"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 

TYPO3 FormZ

  • 1. FormZ • typo3-formz.com 1github.com/romm/formz → go and ★ it! TYPO3 FormZ A modern form handler for extensions
  • 2. FormZ • typo3-formz.com 2github.com/romm/formz → go and ★ it! Romain Canon PHP developer on TYPO3 since 2012 Currently living in Paris @Rommsteinz romain.hydrocanon@gmail.com @romm
  • 3. FormZ • typo3-formz.com 3github.com/romm/formz → go and ★ it! Summary • What and why? • How? • Demo • Next?
  • 4. FormZ • typo3-formz.com 4github.com/romm/formz → go and ★ it! What is FormZ? • A TYPO3 extension (TER, Packagist, GitHub) • A strong API for building web-forms with Extbase & Fluid • Time saving tool for developers and integrators
  • 5. FormZ • typo3-formz.com 5github.com/romm/formz → go and ★ it! Why FormZ? • My customer needed a powerful and modern form manager for dozens of forms (simulations, registration, “business”, contact) • EXT:formhandler? • Old and not maintained a lot (not maintained anymore, since september 2016) • PI-based with no Fluid support • No frontend JavaScript validation • EXT:powermail? • Too “specific”
  • 6. FormZ • typo3-formz.com 6github.com/romm/formz → go and ★ it! “Eh dude, TYPO3 v8 provides a brand new form builder!” • Development of both extensions probably began at the same time No communication led to two separate projects • The new form builder is for TYPO3 8.7; we needed something for TYPO3 6.2
  • 7. FormZ • typo3-formz.com 7github.com/romm/formz → go and ★ it! “Eh dude, TYPO3 v8 provides a brand new form builder!” • Main target audience: • EXT:form → For editors/integrators → Simple forms with no complex business rules → Powerful UI to manage the basic rules of the forms • EXT:formz → For developers/integrators → Can handle huge forms with lots of business rules → Built by a developer for developers: easy to understand, maintain, evolve
  • 8. FormZ • typo3-formz.com 8github.com/romm/formz → go and ★ it! What does FormZ provide?
  • 9. FormZ • typo3-formz.com 9github.com/romm/formz → go and ★ it! TypoScript based configuration • Easy inheritance config.tx_formz { forms { RommFormzExampleFormExampleForm { fields { name { validation { required < config.tx_formz.validators.required } } email { validation { required < config.tx_formz.validators.required isEmail < config.tx_formz.validators.email } } } } } }
  • 10. FormZ • typo3-formz.com 10github.com/romm/formz → go and ★ it! TypoScript based configuration • Easy overriding config.tx_formz { forms { RommFormzExampleFormExampleForm { fields { gender { validation { required < config.tx_formz.validators.required isValid < config.tx_formz.validators.containsValues isValid { messages { default.value = Please select a correct value! } options { values { 10 = male 20 = female } } } } } } } } }
  • 11. FormZ • typo3-formz.com 11github.com/romm/formz → go and ★ it! TypoScript based configuration • Could be YAML or plain PHP (incoming!)
  • 12. FormZ • typo3-formz.com 12github.com/romm/formz → go and ★ it! Fluid templating • Build you form however you want/need, by using the full power of Fluid: partials, view helpers, conditions, etc.
  • 13. FormZ • typo3-formz.com 13github.com/romm/formz → go and ★ it! Fluid templating • Benefit from built-in view helpers: • Field layouts (native support for Twitter Bootstrap and Foundation) • Automatic CSS classes (for valid/invalid status) • More incoming!
  • 14. FormZ • typo3-formz.com 14github.com/romm/formz → go and ★ it! JavaScript frontend framework • Instant custom validation for the user (not the ugly default HTML5 browser validation)
  • 15. FormZ • typo3-formz.com 15github.com/romm/formz → go and ★ it! JavaScript frontend framework • All frontend validators have a PHP version • JavaScript is not needed for FormZ to work well! Server side validation will always run to ensure data security
  • 16. FormZ • typo3-formz.com 16github.com/romm/formz → go and ★ it! JavaScript frontend framework • You can add your own custom JavaScript validators
  • 17. FormZ • typo3-formz.com 17github.com/romm/formz → go and ★ it! Multi language • Easy translation handling Customize validation messages with TypoScript configuration name { validation { required < config.tx_formz.validators.required required.messages { default { key = example_form.error.name_required extension = formz_example } } } } firstName { validation { required < config.tx_formz.validators.required required.messages { default { key = example_form.error.first_name_required extension = formz_example } } } }
  • 18. FormZ • typo3-formz.com 18github.com/romm/formz → go and ★ it! Multi language • Available in frontend JavaScript automatically handles translated messages
  • 19. FormZ • typo3-formz.com 19github.com/romm/formz → go and ★ it! Robust condition system • Choose specific situations where fields should be activated conditionList { doesLikeIceCream { type = fieldHasValue fieldName = likeIceCream fieldValue = 1 } } fields { iceCreamFlavors { activation.expression = doesLikeIceCream } }
  • 20. FormZ • typo3-formz.com 20github.com/romm/formz → go and ★ it! Robust condition system • Choose specific situations where validation should be activated conditionList { countryIsFrance { type = fieldHasValue fieldName = country fieldValue = FR } countryIsGermany { type = fieldHasValue fieldName = country fieldValue = DE } } fields { phoneNumber { validation { frenchPhone { className = MyValidatorFrenchPhoneValidator activation.expression = countryIsFrance } germanPhone { className = MyValidatorGermanPhoneValidator activation.expression = countryIsGermany } } } }
  • 21. FormZ • typo3-formz.com 21github.com/romm/formz → go and ★ it! Robust condition system • Understands logical operations deliveryChoice { activation.expression = zipCodeValid && addressValid && (countryIsFrance || countryIsGermany) }
  • 22. FormZ • typo3-formz.com 22github.com/romm/formz → go and ★ it! Dynamic CSS data-attributes • Automatically added to the <form> HTML tag • Allows powerful CSS targeting using data-attributes • fz-value-{field-name} / fz-valid-{field-name} / fz-error-{field-name} • fz-loading • More... • Fully provided by FormZ core • Works on frontend side (JavaScript) and server side (PHP/Fluid)
  • 23. FormZ • typo3-formz.com 23github.com/romm/formz → go and ★ it! Dynamic CSS classes form[name="exForm"]:not([fz-value-email$="@typo3.org"]) .typo3-user { display: none; } Basic example: On a registration form: I want to display additional information for “official” TYPO3 users.
  • 24. FormZ • typo3-formz.com 24github.com/romm/formz → go and ★ it! Demo
  • 25. FormZ • typo3-formz.com 25github.com/romm/formz → go and ★ it! What is coming next?
  • 26. FormZ • typo3-formz.com 26github.com/romm/formz → go and ★ it! Middlewares • Between the request and the controller • A specific and powerful FormZ context • Example: pre-fill form values, add complex validation processes, save to database, send an email, etc.
  • 27. FormZ • typo3-formz.com 27github.com/romm/formz → go and ★ it! Multi-steps form • Supports separate pages • Conditional steps • Database/Session/Other persistence
  • 28. FormZ • typo3-formz.com 28github.com/romm/formz → go and ★ it! Substeps • A new concept that allows pure JavaScript/CSS step control, for an instant navigation • Check: https://goo.gl/H6TT69 (https://www.direct-energie.com/particuliers/electricite/simulateur-de-consommation)
  • 29. FormZ • typo3-formz.com 29github.com/romm/formz → go and ★ it! More information/support • Join #ext-formz on Slack! You don’t have an account? Go on forger.typo3.org/slack • typo3-formz.com Official website • typo3-formz.com/doc Documentation FR/EN PDF versions available!
  • 30. FormZ • typo3-formz.com 30github.com/romm/formz → go and ★ it! Thanks!