You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I want to trigger the events, but it seems that it doesn't happen. If I understood correctly they should be triggered on elfinder actions like "open", etc.
To Reproduce
I use symfony 6.2 and version 12.3 of elfinder bundle.
post_execution_listener :
class : App\EventListener\PostExecutionListener
tags :
- { name : fm_elfinder.event_listener, event : fm_elfinder.event.post_execution, method : onPostExecute }
PostExecutionListener:
namespace App\EventListener;
use FM\ElfinderBundle\Event\ElFinderPostExecutionEvent;
class PostExecutionListener
{
public function onPostExecute(ElFinderPostExecutionEvent $event): void
{
dd("HERE");
}
}
Am I missing something?
Thanks.
The text was updated successfully, but these errors were encountered:
I think they not working right now, they were introduced when we relied on separate elfinder-php lib (that was extracted from original project). Probably if you extend Connector class (or even add there, and create PR), and fire events from there, they will work.
Describe the bug
I want to trigger the events, but it seems that it doesn't happen. If I understood correctly they should be triggered on elfinder actions like "open", etc.
To Reproduce
I use symfony 6.2 and version 12.3 of elfinder bundle.
My fm_elfinder.yaml:
My services.yaml:
PostExecutionListener:
Am I missing something?
Thanks.
The text was updated successfully, but these errors were encountered: