Spaces:
No application file
No application file
File size: 2,526 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
<?php
namespace Mautic\ApiBundle;
final class ApiEvents
{
/**
* The mautic.client_pre_save event is thrown right before an API client is persisted.
*
* The event listener receives a Mautic\ApiBundle\Event\ClientEvent instance.
*
* @var string
*/
public const CLIENT_PRE_SAVE = 'mautic.client_pre_save';
/**
* The mautic.client_post_save event is thrown right after an API client is persisted.
*
* The event listener receives a Mautic\ApiBundle\Event\ClientEvent instance.
*
* @var string
*/
public const CLIENT_POST_SAVE = 'mautic.client_post_save';
/**
* The mautic.client_post_delete event is thrown after an API client is deleted.
*
* The event listener receives a Mautic\ApiBundle\Event\ClientEvent instance.
*
* @var string
*/
public const CLIENT_POST_DELETE = 'mautic.client_post_delete';
/**
* The mautic.build_api_route event is thrown to build Mautic API routes.
*
* The event listener receives a Mautic\CoreBundle\Event\RouteEvent instance.
*
* @var string
*/
public const BUILD_ROUTE = 'mautic.build_api_route';
/**
* The mautic.api_on_entity_pre_save event is thrown after an entity about to be saved via API.
*
* The event listener receives a Mautic\ApiBundle\Event\ApiEntityEvent instance.
*
* @var string
*/
public const API_ON_ENTITY_PRE_SAVE = 'mautic.api_on_entity_pre_save';
/**
* The mautic.api_on_entity_post_save event is thrown after an entity is saved via API.
*
* The event listener receives a Mautic\ApiBundle\Event\ApiEntityEvent instance.
*
* @var string
*/
public const API_ON_ENTITY_POST_SAVE = 'mautic.api_on_entity_post_save';
/**
* The mautic.api_pre_serialization_context event is dispatched before the serialization context is created for the view.
*
* The event listener receives a Mautic\ApiBundle\Event\ApiSerializationContextEvent instance.
*
* @var string
*/
public const API_PRE_SERIALIZATION_CONTEXT = 'mautic.api_pre_serialization_context';
/**
* The mautic.api_post_serialization_context event is dispatched after the serialization context is created for the view.
*
* The event listener receives a Mautic\ApiBundle\Event\ApiSerializationContextEvent instance.
*
* @var string
*/
public const API_POST_SERIALIZATION_CONTEXT = 'mautic.api_post_serialization_context';
}
|