![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/DashboardBundle/ |
<?php namespace Mautic\DashboardBundle; /** * Events available for DashboardBundle. */ final class DashboardEvents { /** * The mautic.dashboard_on_widget_list_generate event is dispatched when generating a list of available widget types. * * The event listener receives a * Mautic\DashboardBundle\Event\WidgetTypeListEvent instance. * * @var string */ public const DASHBOARD_ON_MODULE_LIST_GENERATE = 'mautic.dashboard_on_widget_list_generate'; /** * The mautic.dashboard_on_widget_form_generate event is dispatched when generating the form of a widget type. * * The event listener receives a * Mautic\DashboardBundle\Event\WidgetFormEvent instance. * * @var string */ public const DASHBOARD_ON_MODULE_FORM_GENERATE = 'mautic.dashboard_on_widget_form_generate'; /** * The mautic.dashboard_on_widget_detail_generate event is dispatched when generating the detail of a widget type. * * The event listener receives a * Mautic\DashboardBundle\Event\WidgetDetailEvent instance. * * @var string */ public const DASHBOARD_ON_MODULE_DETAIL_GENERATE = 'mautic.dashboard_on_widget_detail_generate'; /** * The mautic.dashboard_on_widget_detail_pre_load event is dispatched before detail of a widget type is generate. * * The event listener receives a * Mautic\DashboardBundle\Event\WidgetDetailEvent instance. * * @var string */ public const DASHBOARD_ON_MODULE_DETAIL_PRE_LOAD = 'mautic.dashboard_on_widget_detail_pre_load'; }