digitaladapt / magento-vigilant-form-kit
Magento Module for VigilantForm.
Installs: 599
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/digitaladapt/magento-vigilant-form-kit
Requires
- php: >=7.1.0
- ext-json: *
- digitaladapt/vigilant-form-kit: ^1.3.4
This package is auto-updated.
Last update: 2025-10-22 23:52:58 UTC
README
Magento Module for VigilantForm.
So what is this?
A Magento Module to make it easy to push form submissions into an instance of VigilantForm.
So how is it used?
First you add the library:
composer require digitaladapt/magento-vigilant-form-kit
Then setup a config file vigilantform.json in the root of your Magento installation:
website and form_title will default to hostname and "submit" respectively.
{
"url": "<SERVER_URL>",
"clientId": "<CLIENT_ID>",
"secret": "<CLIENT_SECRET>",
"prefix": null,
"honeypot": null,
"sequence": null,
"script_src": null,
"script_class": null,
"website": null,
"form_title": null
}
Then use dependency injection to get the \VigilantForm\MagentoKit\VigilantFormMagentoKit class into whatever block or controller which has the form you want to validate.
// SomeBlock.php <?php namespace SomeVendor\SomeModule\Block; class SomeBlock extends \Magento\Framework\View\Element\Template { protected $vfmk; public function __construct(\VigilantForm\MagentoKit\VigilantFormMagentoKit $vfmk) { $this->vfmk = $vfmk; } public function getVFMK() { return $this->vfmk; } }
Within the form template you call generateHoneypot() within the html form:
// some_block.phtml <?php /** @var \SomeVendor\SomeModule\Block\SomeBlock $block */ ?> <form> <?php echo $block->getVFMK()->generateHoneypot(); ?> </form>
If a page has multiple forms within a single page, you may call generateHoneypot('form') within the html form, so long as you also call generateHoneypot('code'), after the last form, (this is not required, but can provide a performance boost to page loads):
// some_block.phtml <?php /** @var \SomeVendor\SomeModule\Block\SomeBlock $block */ ?> <form> <?php echo $block->getVFMK()->generateHoneypot('form'); ?> </form> <form> <?php echo $block->getVFMK()->generateHoneypot('form'); ?> </form> <?php echo $block->getVFMK()->generateHoneypot('code'); ?>
When handling form submissions, you also dependency inject the VigilantFormMagentoKit
class, which has the submitForm() function. If the submission fails to be stored,
it will throw an UnexpectedValueException.
$params = $this->getRequest()->getPost(); try { $this->vfmk->submitForm($params); } catch (\UnexpectedValueException $exception) { /* do something, in the event failed to store form submission */ }
Finally, redeploy your Magento website to detect the new module and recompile the dependency injection.