SlideShare a Scribd company logo
axelerant.com 1
Decoupling Entity-Validations From Entity-Forms
@kunalkursija https://2020.drupalmanila.org/
axelerant.com 2
Hello!
I am Kunal Kursija
• Mumbai, India
• Drupal Engineer - @axelerant
• Twitter: @kunalkursija
• Drupal: https://www.drupal.org/u/kunalkursija
• LinkedIn: https://www.linkedin.com/in/kunalkursija/
@kunalkursija https://2020.drupalmanila.org/
axelerant.com 3
Validations
@kunalkursija https://2020.drupalmanila.org/
Cat:
Rat: #ChallengeAccepted
if ($you_are_right) {
echo "Be My Guest!";
}
else {
echo "Be My Dinner!";
}
axelerant.com 4
The Story So Far…
hook_form_alter()
hook_form_FORM_ID_alter()
hook_form_BASE_FORM_ID_alter()
@kunalkursija https://2020.drupalmanila.org/
$form['#validate'][] = 'decoupled_validations_movie_trailer_link_validate';
axelerant.com 5
Disadvantage of…
hook_form_alter()
hook_form_FORM_ID_alter()
hook_form_BASE_FORM_ID_alter()
@kunalkursija https://2020.drupalmanila.org/
axelerant.com 6
Write Once, Run Anywhere?
@kunalkursija https://2020.drupalmanila.org/
axelerant.com 7
Symphony Validator Component
@kunalkursija https://2020.drupalmanila.org/
axelerant.com 8
Two Main Concepts
Constraint
ConstraintValidator
Class
Class
Contain validation rules. (IsThatUfo, IsNull, IsTrue, e.t.c)
Contain validation logic
@kunalkursija https://2020.drupalmanila.org/
axelerant.com
Annotation
@kunalkursija
Plugin
Constraint
ConstraintValidator
Only Constraint class has annotation
9
Drupal and Symphony Validator
https://2020.drupalmanila.org/
axelerant.com 10
Demo…
Adding constraint to entity field…
OR
Adding constraint to entity…
We will create constraints and constraint-validatorsStep 1
Step 2
Step 3
@kunalkursija https://2020.drupalmanila.org/
axelerant.com 11
Questions?
@kunalkursija https://2020.drupalmanila.org/
axelerant.com 12@kunalkursija https://2020.drupalmanila.org/
Zoom Chat
Google Form
https://docs.google.com/forms/d/e/
1FAIpQLSfvaDC6vdXOi53crLHzr-117wssj4V6GipMbTr2c3FzfqhoHA/viewform?
usp=sf_link
🤬
Poor
😐
Average
😊
Good
😍
Excellent
Please share your feedback…
axelerant.com 13@kunalkursija https://2020.drupalmanila.org/
Sharing Is Caring…
#DrupalCampManila2020
axelerant.com 14
Thank You!
@kunalkursija https://2020.drupalmanila.org/

More Related Content

KEY
A Brief Introduction to JQuery Mobile
DOCX
semantic
PPTX
Work and Travel At The Same Time
PPTX
The insect world.odp [восстановлен].pptx [восстановлен]
PDF
Spick and span php unit tests using data providers
PDF
Php 8: String Helpers
PDF
Decoupling entity-validations from entity-forms
PPTX
Modern java script features
A Brief Introduction to JQuery Mobile
semantic
Work and Travel At The Same Time
The insect world.odp [восстановлен].pptx [восстановлен]
Spick and span php unit tests using data providers
Php 8: String Helpers
Decoupling entity-validations from entity-forms
Modern java script features

Recently uploaded (20)

PPTX
Cloud computing and distributed systems.
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
Machine Learning_overview_presentation.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Spectroscopy.pptx food analysis technology
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Electronic commerce courselecture one. Pdf
PDF
cuic standard and advanced reporting.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
A Presentation on Artificial Intelligence
Cloud computing and distributed systems.
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Digital-Transformation-Roadmap-for-Companies.pptx
20250228 LYD VKU AI Blended-Learning.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Building Integrated photovoltaic BIPV_UPV.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Programs and apps: productivity, graphics, security and other tools
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Machine Learning_overview_presentation.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Spectroscopy.pptx food analysis technology
Per capita expenditure prediction using model stacking based on satellite ima...
MIND Revenue Release Quarter 2 2025 Press Release
Electronic commerce courselecture one. Pdf
cuic standard and advanced reporting.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Encapsulation_ Review paper, used for researhc scholars
A Presentation on Artificial Intelligence
Ad
Ad

Decoupling entity validations from entity forms