![]() 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/IntegrationsBundle/ |
<?php declare(strict_types=1); namespace Mautic\IntegrationsBundle; final class IntegrationEvents { /** * The mautic.integration.sync_post_execute_integration event is dispatched after a sync is executed. * * The event listener receives a Mautic\IntegrationsBundle\Event\SyncEvent object. * * @var string */ public const INTEGRATION_POST_EXECUTE = 'mautic.integration.sync_post_execute_integration'; /** * The mautic.integration.config_form_loaded event is dispatched when config page for integration is loaded. * * The event listener receives a Mautic\IntegrationsBundle\Event\FormLoadEvent object. * * @var string */ public const INTEGRATION_CONFIG_FORM_LOAD = 'mautic.integration.config_form_loaded'; /** * The mautic.integration.config_before_save event is dispatched prior to an integration's configuration is saved. * * The event listener receives a Mautic\IntegrationsBundle\Event\ConfigSaveEvent instance. * * @var string */ public const INTEGRATION_CONFIG_BEFORE_SAVE = 'mautic.integration.config_before_save'; /** * The mautic.integration.config_after_save event is dispatched after an integration's configuration is saved. * * The event listener receives a Mautic\IntegrationsBundle\Event\ConfigSaveEvent instance. * * @var string */ public const INTEGRATION_CONFIG_AFTER_SAVE = 'mautic.integration.config_after_save'; /** * The mautic.integration.config_before_save event is dispatched prior to an integration's configuration is saved. * * The event listener receives a Mautic\IntegrationsBundle\Event\ConfigAuthUrlEvent instance. * * @var string */ public const INTEGRATION_CONFIG_ON_GENERATE_AUTH_URL = 'mautic.integration.INTEGRATION_CONFIG_ON_GENERATE_AUTH_URL'; /** * The mautic.integration.keys_before_encryption event is dispatched prior to encrypting keys to be stored into the database. * * The event listener receives a Mautic\IntegrationsBundle\Event\KeysEncryptionEvent instance. * * @var string */ public const INTEGRATION_KEYS_BEFORE_ENCRYPTION = 'mautic.integration.keys_before_encryption'; /** * The mautic.integration.keys_after_decryption event is dispatched after fetching and decrypting keys from the database. * * The event listener receives a Mautic\IntegrationsBundle\Event\KeysDecryptionEvent instance. * * @var string */ public const INTEGRATION_KEYS_AFTER_DECRYPTION = 'mautic.integration.keys_after_decryption'; /** * The mautic.integration.mautic_sync_field_load event is dispatched when Mautic sync fields are build. * * The event listener receives a Mautic\IntegrationsBundle\Event\MauticSyncFieldsLoadEvent instance. * * @var string */ public const INTEGRATION_MAUTIC_SYNC_FIELDS_LOAD = 'mautic.integration.mautic_sync_field_load'; /** * The mautic.integration.INTEGRATION_COLLECT_INTERNAL_OBJECTS event is dispatched when a list of Mautic internal objects is build. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalObjectEvent instance. * * @var string */ public const INTEGRATION_COLLECT_INTERNAL_OBJECTS = 'mautic.integration.INTEGRATION_COLLECT_INTERNAL_OBJECTS'; /** * The mautic.integration.INTEGRATION_CREATE_INTERNAL_OBJECTS event is dispatched when a list of Mautic internal objects should be created. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalObjectCreateEvent instance. * * @var string */ public const INTEGRATION_CREATE_INTERNAL_OBJECTS = 'mautic.integration.INTEGRATION_CREATE_INTERNAL_OBJECTS'; /** * The mautic.integration.INTEGRATION_UPDATE_INTERNAL_OBJECTS event is dispatched when a list of Mautic internal objects should be updated. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalObjectUpdateEvent instance. * * @var string */ public const INTEGRATION_UPDATE_INTERNAL_OBJECTS = 'mautic.integration.INTEGRATION_UPDATE_INTERNAL_OBJECTS'; /** * The mautic.integration.INTEGRATION_FIND_INTERNAL_RECORDS event is dispatched when a list of Mautic internal object records by ID is requested. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalObjectFindEvent instance. * * @var string */ public const INTEGRATION_FIND_INTERNAL_RECORDS = 'mautic.integration.INTEGRATION_FIND_INTERNAL_RECORDS'; /** * The mautic.integration.INTEGRATION_FIND_OWNER_IDS event is dispatched when a list of Mautic internal owner IDs by internal object ID is requested. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalObjectFindEvent instance. * * @var string */ public const INTEGRATION_FIND_OWNER_IDS = 'mautic.integration.INTEGRATION_FIND_OWNER_IDS'; /** * The mautic.integration.INTEGRATION_BUILD_INTERNAL_OBJECT_ROUTE event is dispatched when a Mautic internal object route is requested. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalObjectOwnerEvent instance. * * @var string */ public const INTEGRATION_BUILD_INTERNAL_OBJECT_ROUTE = 'mautic.integration.INTEGRATION_BUILD_INTERNAL_OBJECT_ROUTE'; /** * This event is dispatched when a tokens are being built to represent links to mapped integration objects. * * The event listener receives a Mautic\IntegrationsBundle\Event\MappedIntegrationObjectTokenEvent instance. * * @var string */ public const INTEGRATION_OBJECT_TOKEN_EVENT = 'mautic.integration.INTEGRATION_OBJECT_TOKEN_EVENT'; /** * This event is dispatched when a Mautic contact field changes are about to be stored to the sync_object_field_change_report table. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalContactEvent instance. * * @var string */ public const INTEGRATION_BEFORE_CONTACT_FIELD_CHANGES = 'mautic.integration.INTEGRATION_BEFORE_CONTACT_FIELD_CHANGES'; /** * This event is dispatched when a Mautic company field changes are about to be stored to the sync_object_field_change_report table. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalCompanyEvent instance. * * @var string */ public const INTEGRATION_BEFORE_COMPANY_FIELD_CHANGES = 'mautic.integration.INTEGRATION_BEFORE_COMPANY_FIELD_CHANGES'; /** * The mautic.integration.INTEGRATION_FIND_INTERNAL_RECORD event is dispatched when a list of Mautic internal object record by ID is requested. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalObjectFindByIdEvent instance. * * @var string */ public const INTEGRATION_FIND_INTERNAL_RECORD = 'mautic.integration.INTEGRATION_FIND_INTERNAL_RECORD'; /** * This event is dispatched when a Mautic contact field changes are about to be used in full object report builder. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalContactEvent instance. * * @var string */ public const INTEGRATION_BEFORE_FULL_CONTACT_REPORT_BUILD = 'mautic.integration.INTEGRATION_BEFORE_FULL_CONTACT_REPORT_BUILD'; /** * This event is dispatched when a Mautic company field changes are about to be used in full object report builder. * * The event listener receives a Mautic\IntegrationsBundle\Event\InternalCompanyEvent instance. * * @var string */ public const INTEGRATION_BEFORE_FULL_COMPANY_REPORT_BUILD = 'mautic.integration.INTEGRATION_BEFORE_FULL_COMPANY_REPORT_BUILD'; /** * This event is dispatched when a batch of objects have synced from an integration to Mautic after the sync engine has processed everything * so that listeners can then act on mappings stored in the sync_object_mapping table. * * The event listener receives a Mautic\IntegrationsBundle\Event\CompletedSyncIterationEvent instance. * * @var string */ public const INTEGRATION_BATCH_SYNC_COMPLETED_INTEGRATION_TO_MAUTIC = 'mautic.integration.INTEGRATION_BATCH_SYNC_COMPLETED_INTEGRATION_TO_MAUTIC'; /** * This event is dispatched when a batch of objects have synced from Mautic to the integration after the sync engine has processed everything * so that listeners can then act on mappings stored in the sync_object_mapping table. * * The event listener receives a Mautic\IntegrationsBundle\Event\CompletedSyncIterationEvent instance. * * @var string */ public const INTEGRATION_BATCH_SYNC_COMPLETED_MAUTIC_TO_INTEGRATION = 'mautic.integration.INTEGRATION_BATCH_SYNC_COMPLETED_MAUTIC_TO_INTEGRATION'; /** * This event is dispatched when api keys is updated/inserted. * * The event listener receives a Mautic\IntegrationsBundle\Event\KeysSaveEvent instance. * * @var string */ public const INTEGRATION_API_KEYS_BEFORE_SAVE = 'mautic.integration.INTEGRATION_API_KEYS_BEFORE_SAVE'; }