Hello yellowbird,
Visforms also has a plugin interface for custom validation of form entries in the backend.
One option for developers is to create a custom plugin.
The documentation describes how to create a 'Visforms custom plugin'.
Custom plugin creation:
docs.joomla-4.visforms.vi-solutions.de/d...-plugin-development/
Custom plugin event system:
docs.joomla-4.visforms.vi-solutions.de/d...-plugin-development/
There is a complete, ready-made custom plugin with all events and auxiliary functions as a template that comes with the Visforms installation:
docs.joomla-4.visforms.vi-solutions.de/d...-plugin-development/
The developer can then decide for himself what else should happen.
Creating a custom plugin requires some experience in PHP development under Joomla.
The relevant event for you is the following:
Code:
onVisformsBeforeFormSave
In this event handler you can
- attach your own validation,
- correctly write a meaningful error message to $form->errors in the event of an error,
- correctly set the result argument.
Best regards, Ingmar [/code][/code]