Spaces:
No application file
No application file
File size: 26,830 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 |
<?php
namespace Mautic\LeadBundle;
/**
* Events available for LeadBundle.
*/
final class LeadEvents
{
/**
* The mautic.lead_pre_save event is dispatched right before a lead is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const LEAD_PRE_SAVE = 'mautic.lead_pre_save';
/**
* The mautic.lead_post_save event is dispatched right after a lead is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const LEAD_POST_SAVE = 'mautic.lead_post_save';
/**
* The mautic.lead_points_change event is dispatched if a lead's points changes.
*
* The event listener receives a
* Mautic\LeadBundle\Event\PointsChangeEvent instance.
*
* @var string
*/
public const LEAD_POINTS_CHANGE = 'mautic.lead_points_change';
/**
* The mautic.lead_points_change event is dispatched if a lead's points changes.
*
* The event listener receives a
* Mautic\LeadBundle\Event\PointsChangeEvent instance.
*
* @var string
*/
public const LEAD_UTMTAGS_ADD = 'mautic.lead_utmtags_add';
/**
* The mautic.lead_company_change event is dispatched if a lead's company changes.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadChangeCompanyEvent instance.
*
* @var string
*/
public const LEAD_COMPANY_CHANGE = 'mautic.lead_company_change';
/**
* The mautic.lead_list_change event is dispatched if a lead's lists changes.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ListChangeEvent instance.
*
* @var string
*/
public const LEAD_LIST_CHANGE = 'mautic.lead_list_change';
/**
* The mautic.lead_category_change event is dispatched if a lead's subscribed categories change.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadCategoryEvent instance.
*
* @var string
*/
public const LEAD_CATEGORY_CHANGE = 'mautic.lead_category_change';
/**
* The mautic.lead_list_batch_change event is dispatched if a batch of leads are changed from ListModel::rebuildListLeads().
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListChange instance.
*
* @var string
*/
public const LEAD_LIST_BATCH_CHANGE = 'mautic.lead_list_batch_change';
/**
* The mautic.lead_pre_delete event is dispatched before a lead is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const LEAD_PRE_DELETE = 'mautic.lead_pre_delete';
/**
* The mautic.lead_post_delete event is dispatched after a lead is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const LEAD_POST_DELETE = 'mautic.lead_post_delete';
/**
* The mautic.lead_pre_merge event is dispatched before two leads are merged.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadMergeEvent instance.
*
* @var string
*/
public const LEAD_PRE_MERGE = 'mautic.lead_pre_merge';
/**
* The mautic.lead_post_merge event is dispatched after two leads are merged.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadMergeEvent instance.
*
* @var string
*/
public const LEAD_POST_MERGE = 'mautic.lead_post_merge';
/**
* The mautic.lead_identified event is dispatched when a lead first becomes known, i.e. name, email, company.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const LEAD_IDENTIFIED = 'mautic.lead_identified';
/**
* The mautic.lead_channel_subscription_changed event is dispatched when a lead's DNC status changes.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ChannelSubscriptionChange instance.
*
* @var string
*/
public const CHANNEL_SUBSCRIPTION_CHANGED = 'mautic.lead_channel_subscription_changed';
/**
* The mautic.lead_build_search_commands event is dispatched when the search commands are built.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadBuildSearchEvent instance.
*
* @var string
*/
public const LEAD_BUILD_SEARCH_COMMANDS = 'mautic.lead_build_search_commands';
/**
* The mautic.company_build_search_commands event is dispatched when the search commands are built.
*
* The event listener receives a
* Mautic\LeadBundle\Event\CompanyBuildSearchEvent instance.
*
* @var string
*/
public const COMPANY_BUILD_SEARCH_COMMANDS = 'mautic.company_build_search_commands';
/**
* The mautic.current_lead_changed event is dispatched when the current lead is changed to another such as when
* a new lead is created from a form submit. This gives opportunity to update session data if applicable.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadChangeEvent instance.
*
* @var string
*/
public const CURRENT_LEAD_CHANGED = 'mautic.current_lead_changed';
/**
* The mautic.lead_list_pre_save event is dispatched right before a lead_list is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const LIST_PRE_SAVE = 'mautic.lead_list_pre_save';
/**
* The mautic.lead_list_post_save event is dispatched right after a lead_list is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListEvent instance.
*
* @var string
*/
public const LIST_POST_SAVE = 'mautic.lead_list_post_save';
/**
* The mautic.lead_list_pre_unpublish event is dispatched before a lead_list is unpublished.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListEvent instance.
*
* @var string
*/
public const LIST_PRE_UNPUBLISH = 'mautic.lead_list_pre_unpublish';
/**
* The mautic.lead_list_pre_delete event is dispatched before a lead_list is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListEvent instance.
*
* @var string
*/
public const LIST_PRE_DELETE = 'mautic.lead_list_pre_delete';
/**
* The mautic.lead_list_post_delete event is dispatched after a lead_list is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListEvent instance.
*
* @var string
*/
public const LIST_POST_DELETE = 'mautic.lead_list_post_delete';
/**
* The mautic.lead_field_pre_save event is dispatched right before a lead_field is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const FIELD_PRE_SAVE = 'mautic.lead_field_pre_save';
/**
* The mautic.lead_field_post_save event is dispatched right after a lead_field is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const FIELD_POST_SAVE = 'mautic.lead_field_post_save';
/**
* The mautic.lead_field_pre_delete event is dispatched before a lead_field is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const FIELD_PRE_DELETE = 'mautic.lead_field_pre_delete';
/**
* The mautic.lead_field_post_delete event is dispatched after a lead_field is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const FIELD_POST_DELETE = 'mautic.lead_field_post_delete';
/**
* The mautic.lead_timeline_on_generate event is dispatched when generating a lead's timeline view.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadTimelineEvent instance.
*
* @var string
*/
public const TIMELINE_ON_GENERATE = 'mautic.lead_timeline_on_generate';
/**
* The mautic.lead_note_pre_save event is dispatched right before a lead note is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const NOTE_PRE_SAVE = 'mautic.lead_note_pre_save';
/**
* The mautic.lead_note_post_save event is dispatched right after a lead note is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const NOTE_POST_SAVE = 'mautic.lead_note_post_save';
/**
* The mautic.lead_note_pre_delete event is dispatched before a lead note is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const NOTE_PRE_DELETE = 'mautic.lead_note_pre_delete';
/**
* The mautic.lead_note_post_delete event is dispatched after a lead note is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const NOTE_POST_DELETE = 'mautic.lead_note_post_delete';
/**
* The mautic.lead_import_pre_save event is dispatched right before an import is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportEvent instance.
*
* @var string
*/
public const IMPORT_PRE_SAVE = 'mautic.lead_import_pre_save';
/**
* The mautic.lead_import_post_save event is dispatched right after an import is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportEvent instance.
*
* @var string
*/
public const IMPORT_POST_SAVE = 'mautic.lead_import_post_save';
/**
* The mautic.lead_import_pre_delete event is dispatched before an import is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportEvent instance.
*
* @var string
*/
public const IMPORT_PRE_DELETE = 'mautic.lead_import_pre_delete';
/**
* The mautic.lead_import_post_delete event is dispatched after an import is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportEvent instance.
*
* @var string
*/
public const IMPORT_POST_DELETE = 'mautic.lead_import_post_delete';
/**
* The mautic.lead_import_on_initialize event is dispatched when the import is being initialized.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportInitEvent instance.
*
* @var string
*/
public const IMPORT_ON_INITIALIZE = 'mautic.lead_import_on_initialize';
/**
* The mautic.lead_import_on_field_mapping event is dispatched when the import needs the list of fields for mapping.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportMappingEvent instance.
*
* @var string
*/
public const IMPORT_ON_FIELD_MAPPING = 'mautic.lead_import_on_field_mapping';
/**
* The mautic.lead_import_on_process event is dispatched when the import batch is processing.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportEvent instance.
*
* @var string
*/
public const IMPORT_ON_PROCESS = 'mautic.lead_import_on_process';
/**
* The mautic.lead_import_on_validate event is dispatched when the import form is being validated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportEvent instance
*/
public const IMPORT_ON_VALIDATE = 'mautic.lead_import_on_validate';
/**
* The mautic.lead_import_batch_processed event is dispatched after an import batch is processed.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ImportEvent instance.
*
* @var string
*/
public const IMPORT_BATCH_PROCESSED = 'mautic.lead_import_batch_processed';
/**
* The mautic.lead_device_pre_save event is dispatched right before a lead device is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadEvent instance.
*
* @var string
*/
public const DEVICE_PRE_SAVE = 'mautic.lead_device_pre_save';
/**
* The mautic.lead_device_post_save event is dispatched right after a lead device is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const DEVICE_POST_SAVE = 'mautic.lead_device_post_save';
/**
* The mautic.lead_device_pre_delete event is dispatched before a lead device is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const DEVICE_PRE_DELETE = 'mautic.lead_device_pre_delete';
/**
* The mautic.lead_device_post_delete event is dispatched after a lead device is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadFieldEvent instance.
*
* @var string
*/
public const DEVICE_POST_DELETE = 'mautic.lead_device_post_delete';
/**
* The mautic.lead_tag_pre_save event is dispatched right before a lead tag is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\TagEvent instance.
*
* @var string
*/
public const TAG_PRE_SAVE = 'mautic.lead_tag_pre_save';
/**
* The mautic.lead_tag_post_save event is dispatched right after a lead tag is persisted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\TagEvent instance.
*
* @var string
*/
public const TAG_POST_SAVE = 'mautic.lead_tag_post_save';
/**
* The mautic.lead_tag_pre_delete event is dispatched before a lead tag is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\TagEvent instance.
*
* @var string
*/
public const TAG_PRE_DELETE = 'mautic.lead_tag_pre_delete';
/**
* The mautic.lead_tag_post_delete event is dispatched after a lead tag is deleted.
*
* The event listener receives a
* Mautic\LeadBundle\Event\TagEvent instance.
*
* @var string
*/
public const TAG_POST_DELETE = 'mautic.lead_tag_post_delete';
/**
* The mautic.filter_choice_fields event is dispatched when the list filter dropdown is populated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\FilterChoiceEvent
*
* @var string
*/
public const FILTER_CHOICE_FIELDS = 'mautic.filter_choice_fields';
/**
* The mautic.lead.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.lead.on_campaign_trigger_action';
/**
* The mautic.lead.on_campaign_action_delete_contact event is dispatched when the campaign action to delete a contact is executed.
*
* The event listener receives a Mautic\CampaignBundle\Event\PendingEvent
*
* @var string
*/
public const ON_CAMPAIGN_ACTION_DELETE_CONTACT = 'mautic.lead.on_campaign_action_delete_contact';
/**
* The mautic.lead.on_campaign_action_add_donotcontact event is dispatched when the campaign action to add a donotcontact is executed.
*
* The event listener receives a Mautic\CampaignBundle\Event\PendingEvent
*
* @var string
*/
public const ON_CAMPAIGN_ACTION_ADD_DONOTCONTACT = 'mautic.lead.on_campaign_action_add_donotcontact';
/**
* The mautic.lead.on_campaign_action_remove_donotcontact event is dispatched when the campaign action to remove a donotcontact is executed.
*
* The event listener receives a Mautic\CampaignBundle\Event\PendingEvent
*
* @var string
*/
public const ON_CAMPAIGN_ACTION_REMOVE_DONOTCONTACT = 'mautic.lead.on_campaign_action_remove_donotcontact';
/**
* The mautic.lead.on_campaign_trigger_condition event is fired when the campaign condition triggers.
*
* The event listener receives a
* Mautic\CampaignBundle\Event\CampaignExecutionEvent
*
* @var string
*/
public const ON_CAMPAIGN_TRIGGER_CONDITION = 'mautic.lead.on_campaign_trigger_condition';
/**
* The mautic.company_pre_save event is thrown right before a form is persisted.
*
* The event listener receives a Mautic\LeadBundle\Event\CompanyEvent instance.
*
* @var string
*/
public const COMPANY_PRE_SAVE = 'mautic.company_pre_save';
/**
* The mautic.company_post_save event is thrown right after a form is persisted.
*
* The event listener receives a Mautic\LeadBundle\Event\CompanyEvent instance.
*
* @var string
*/
public const COMPANY_POST_SAVE = 'mautic.company_post_save';
/**
* The mautic.company_pre_delete event is thrown before a form is deleted.
*
* The event listener receives a Mautic\LeadBundle\Event\CompanyEvent instance.
*
* @var string
*/
public const COMPANY_PRE_DELETE = 'mautic.company_pre_delete';
/**
* The mautic.company_post_delete event is thrown after a form is deleted.
*
* The event listener receives a Mautic\LeadBundle\Event\CompanyEvent instance.
*
* @var string
*/
public const COMPANY_POST_DELETE = 'mautic.company_post_delete';
/**
* The mautic.company_pre_merge event is dispatched before two companies are merged.
*
* The event listener receives a
* Mautic\LeadBundle\Event\CompanyMergeEvent instance.
*
* @var string
*/
public const COMPANY_PRE_MERGE = 'mautic.company_pre_merge';
/**
* The mautic.company_post_merge event is dispatched after two companies are merged.
*
* The event listener receives a
* Mautic\LeadBundle\Event\CompanyMergeEvent instance.
*
* @var string
*/
public const COMPANY_POST_MERGE = 'mautic.company_post_merge';
/**
* The mautic.list_filters_choices_on_generate event is dispatched when the choices for list filters are generated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListFiltersChoicesEvent instance.
*
* @var string
*/
public const LIST_FILTERS_CHOICES_ON_GENERATE = 'mautic.list_filters_choices_on_generate';
/**
* The event is dispatched to allow inserting segment filters translations.
*
* The listener receives SegmentDictionaryGenerationEvent
*/
public const SEGMENT_DICTIONARY_ON_GENERATE = 'mautic.list_dictionary_on_generate';
/**
* The mautic.list_filters_operators_on_generate event is dispatched when the operators for list filters are generated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListFiltersOperatorsEvent instance.
*
* @var string
*/
public const LIST_FILTERS_OPERATORS_ON_GENERATE = 'mautic.list_filters_operators_on_generate';
/**
* The mautic.collect_filter_choices_for_list_field_type event is dispatched when some filter based on a list type needs to load its choices.
*
* The event listener receives a
* Mautic\LeadBundle\Event\ListFieldChoicesEvent
*
* @var string
*/
public const COLLECT_FILTER_CHOICES_FOR_LIST_FIELD_TYPE = 'mautic.collect_filter_choices_for_list_field_type';
/**
* The mautic.collect_operators_for_field_type event is dispatched when some filter needs operators for a field type.
*
* The event listener receives a
* Mautic\LeadBundle\Event\TypeOperatorsEvent
*
* @var string
*/
public const COLLECT_OPERATORS_FOR_FIELD_TYPE = 'mautic.collect_operators_for_field_type';
/**
* The mautic.collect_operators_for_field event is dispatched when some filter needs operators for a specific field.
*
* The event listener receives a
* Mautic\LeadBundle\Event\TypeOperatorsEvent
*
* @var string
*/
public const COLLECT_OPERATORS_FOR_FIELD = 'mautic.collect_operators_for_field';
/**
* The mautic.adjust_filter_form_type_for_field event is dispatched when the segment filter form is built so events can add new or modify existing fields.
*
* The event listener receives a
* Symfony\Component\Form\FormEvent
*
* @var string
*/
public const ADJUST_FILTER_FORM_TYPE_FOR_FIELD = 'mautic.adjust_filter_form_type_for_field';
/**
* The mautic.list_filters_delegate_decorator event id dispatched when decorator is delegated for segment filter.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListFiltersDecoratorDelegateEvent instance.
*/
public const SEGMENT_ON_DECORATOR_DELEGATE = 'mautic.list_filters_delegate_decorator';
/**
* The mautic.list_filters_on_filtering event is dispatched when the lists are updated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListFilteringEvent instance.
*
* @var string
*/
public const LIST_FILTERS_ON_FILTERING = 'mautic.list_filters_on_filtering';
/**
* The mautic.list_filters_merge event is dispatched when the lists rebuilding.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListMergeFiltersEvent instance.
*
* @var string
*/
public const LIST_FILTERS_MERGE = 'mautic.list_filters_merge';
/**
* The mautic.list_filters_querybuilder_generated event is dispatched when the queryBuilder for segment was generated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListQueryBuilderGeneratedEvent instance.
*
* @var string
*/
public const LIST_FILTERS_QUERYBUILDER_GENERATED = 'mautic.list_filters_querybuilder_generated';
/**
* The mautic.list_filters_operator_querybuilder_on_generate event is dispatched when the queryBuilder for segment filter operators is being generated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\SegmentOperatorQueryBuilderEvent instance.
*
* @var string
*/
public const LIST_FILTERS_OPERATOR_QUERYBUILDER_ON_GENERATE = 'mautic.list_filters_operator_querybuilder_on_generate';
/**
* The mautic.list_filters_on_filtering event is dispatched when the lists are updated.
*
* The event listener receives a
* Mautic\LeadBundle\Event\LeadListFilteringEvent instance.
*
* @var string
*/
public const LIST_PRE_PROCESS_LIST = 'mautic.list_pre_process_list';
/**
* The mautic.clickthrough_contact_identification event is dispatched when a clickthrough array is parsed from a tracking
* URL.
*
* The event listener receives a Mautic\LeadBundle\Event\ContactIdentificationEvent instance.
*
* @var string
*/
public const ON_CLICKTHROUGH_IDENTIFICATION = 'mautic.clickthrough_contact_identification';
/**
* The mautic.lead_field_pre_add_column event is dispatched before adding a new column to lead_fields table.
*
* The event listener receives a
* Mautic\LeadBundle\Field\Event\AddColumnEvent instance.
*
* @var string
*/
public const LEAD_FIELD_PRE_ADD_COLUMN = 'mautic.lead_field_pre_add_column';
/**
* The mautic.lead_field_pre_add_column_background_job event is dispatched before adding a new column to lead_fields table
* in background job.
*
* The event listener receives a
* Mautic\LeadBundle\Field\Event\AddColumnBackgroundEvent instance.
*
* @var string
*/
public const LEAD_FIELD_PRE_ADD_COLUMN_BACKGROUND_JOB = 'mautic.lead_field_pre_add_column_background_job';
/**
* The mautic.lead_field_pre_update_column event is dispatched before pdating a column in the lead_fields table.
*
* The event listener receives a
* Mautic\LeadBundle\Field\Event\UpdateColumnEvent instance.
*
* @var string
*/
public const LEAD_FIELD_PRE_UPDATE_COLUMN = 'mautic.lead_field_pre_update_column';
/**
* The mautic.lead_field_pre_add_column_background_job event is dispatched before updating a column in the lead_fields table.
* in background job.
*
* The event listener receives a
* Mautic\LeadBundle\Field\Event\UpdateColumnBackgroundEvent instance.
*
* @var string
*/
public const LEAD_FIELD_PRE_UPDATE_COLUMN_BACKGROUND_JOB = 'mautic.lead_field_pre_update_column_background_job';
/**
* The mautic.post_contact_export_scheduled event is dispatched when a contact export is scheduled.
*
* The event listener receives a Mautic\LeadBundle\Event\ContactExportSchedulerEvent instance.
*/
public const POST_CONTACT_EXPORT_SCHEDULED = 'mautic.post_contact_export_scheduled';
/**
* The mautic.contact_export_prepare_file event is dispatched when a contact export is being processed.
*
* The event listener receives a Mautic\LeadBundle\Event\ContactExportSchedulerEvent instance.
*/
public const CONTACT_EXPORT_PREPARE_FILE = 'mautic.contact_export_prepare_file';
/**
* The mautic.contact_export_prepare_file event is dispatched when a contact export email is to be sent.
*
* The event listener receives a Mautic\LeadBundle\Event\ContactExportSchedulerEvent instance.
*/
public const CONTACT_EXPORT_SEND_EMAIL = 'mautic.contact_export_send_email';
/**
* The mautic.post_contact_export_send_email event is dispatched when a contact export email is sent.
*
* The event listener receives a Mautic\LeadBundle\Event\ContactExportSchedulerEvent instance.
*/
public const POST_CONTACT_EXPORT_SEND_EMAIL = 'mautic.post_contact_export_send_email';
/**
* The mautic.lead_on_segments_change event is thrown to change lead's segments.
*
* The event listener receives a Mautic\FormBundle\Event\SubmissionEvent instance.
*
* @var string
*/
public const LEAD_ON_SEGMENTS_CHANGE = 'mautic.lead_on_segments_change';
}
|