Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

onFormProcessed problem

Started by Muut Archive 10 years ago · 2 replies · 459 views
10 years ago

I'm trying to add custom processing for a form. Created a plugin and registrered for the onFormProcessed event as per the manual. But when submitting the form it fails with an error stating that the event received must be an instance of Grav\Plugin\Event but that the event it got was RocketTheme\Toolbox\Event\Event.
Grateful for any suggestion on how to fix this.

10 years ago

You need to add the appropriate use statement to specify the Event class:

PHP
<?php
namespace Grav\Plugin;

use RocketTheme\Toolbox\Event\Event;
...

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1361 9 years ago
Archive · by Muut Archive, 9 years ago
2 939 9 years ago
Archive · by Muut Archive, 9 years ago
2 4069 9 years ago
Archive · by Muut Archive, 9 years ago
1 2958 9 years ago
Archive · by Muut Archive, 9 years ago
3 1123 9 years ago