Merge pull request #13966 from agileware/CIVICRM-1168
[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 */
fa6fce2f 11 const MAPPINGS = 'civi.actionSchedule.getMappings';
9c8748cc 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 */
fa6fce2f 17 const MAILING_QUERY = 'civi.actionSchedule.prepareMailingQuery';
9c8748cc
TO
18
19}