Spaces:
No application file
No application file
File size: 445 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?php
namespace MauticPlugin\MauticFocusBundle;
class FocusEventTypes
{
/**
* The focus.on_open event type is used for event dispatched when an focus is opened.
*
* @var string
*/
public const FOCUS_ON_VIEW = 'focus.on_view';
/**
* The focus.on_click event type is used for event dispatched when an focus is clicked.
*
* @var string
*/
public const FOCUS_ON_CLICK = 'focus.on_click';
}
|