Hi!
I'm not able to trigger a plugin event. I'm trying to display a message on onBeforeFlexformsReturnForm() event. I've created a plugin, added it to the "flexforms" plugin group, this is the code:
<?php
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Factory;
defined('_JEXEC') or die;
class plgMessage extends CMSPlugin
{
public function onBeforeFlexformsReturnForm() {
Factory::getApplication()->enqueueMessage('Plugin event triggered!');
}
}
What I'm doing wrong?
Regards
Hi!
I'm not able to trigger a plugin event. I'm trying to display a message on onBeforeFlexformsReturnForm() event. I've created a plugin, added it to the "flexforms" plugin group, this is the code:
What I'm doing wrong?
Regards