![]() 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/StageBundle/ |
<?php namespace Mautic\StageBundle; /** * Events available for StageBundle. */ final class StageEvents { /** * The mautic.stage_pre_save event is thrown right before a form is persisted. * * The event listener receives a Mautic\StageBundle\Event\StageEvent instance. * * @var string */ public const STAGE_PRE_SAVE = 'mautic.stage_pre_save'; /** * The mautic.stage_post_save event is thrown right after a form is persisted. * * The event listener receives a Mautic\StageBundle\Event\StageEvent instance. * * @var string */ public const STAGE_POST_SAVE = 'mautic.stage_post_save'; /** * The mautic.stage_pre_delete event is thrown before a form is deleted. * * The event listener receives a Mautic\StageBundle\Event\StageEvent instance. * * @var string */ public const STAGE_PRE_DELETE = 'mautic.stage_pre_delete'; /** * The mautic.stage_post_delete event is thrown after a form is deleted. * * The event listener receives a Mautic\StageBundle\Event\StageEvent instance. * * @var string */ public const STAGE_POST_DELETE = 'mautic.stage_post_delete'; /** * The mautic.stage_on_build event is thrown before displaying the stage builder form to allow adding of custom actions. * * The event listener receives a Mautic\StageBundle\Event\StageBuilderEvent instance. * * @var string */ public const STAGE_ON_BUILD = 'mautic.stage_on_build'; /** * The mautic.stage_on_action event is thrown to execute a stage action. * * The event listener receives a Mautic\StageBundle\Event\StageActionEvent instance. * * @var string */ public const STAGE_ON_ACTION = 'mautic.stage_on_action'; /** * The mautic.stage.on_campaign_batch_action event is dispatched when the campaign action triggers. * * The event listener receives a Mautic\CampaignBundle\Event\PendingEvent * * @var string */ public const ON_CAMPAIGN_BATCH_ACTION = 'mautic.stage.on_campaign_batch_action'; /** * @deprecated; use ON_CAMPAIGN_BATCH_ACTION instead * * The mautic.stage.on_campaign_trigger_action event is fired when the campaign action triggers. * * The event listener receives a * Mautic\CampaignBundle\Event\CampaignExecutionEvent * * @var string */ public const ON_CAMPAIGN_TRIGGER_ACTION = 'mautic.stage.on_campaign_trigger_action'; }