Merge pull request #8452 from jitendrapurohit/CRM-18677
[civicrm-core.git] / Civi / ActionSchedule / Events.php
CommitLineData
9c8748cc
TO
1<?php
2namespace Civi\ActionSchedule;
3
4class Events {
5
6 /**
7 * Register any available mappings.
8 *
9 * @see EntityListEvent
10 */
11 const MAPPINGS = 'actionSchedule.getMappings';
12
f9ec2da6
TO
13 /**
14 * Prepare the pre-mailing query. This query loads details about
15 * the contact/entity so that they're available for mail-merge.
16 */
9c8748cc
TO
17 const MAILING_QUERY = 'actionSchedule.prepareMailingQuery';
18
19}