Spaces:
No application file
No application file
File size: 1,596 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<?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';
}
|