(dev/core#2258) CryptoToken - Change notation
[civicrm-core.git] / Civi / Token / Events.php
1 <?php
2
3 namespace Civi\Token;
4
5 class Events {
6 /**
7 * @see \Civi\Token\Event\TokenRegisterEvent
8 * @deprecated - You may simply use the event name directly. dev/core#1744
9 */
10 const TOKEN_REGISTER = 'civi.token.list';
11
12 /**
13 * @see \Civi\Token\Event\TokenValueEvent
14 * @deprecated - You may simply use the event name directly. dev/core#1744
15 */
16 const TOKEN_EVALUATE = 'civi.token.eval';
17
18 /**
19 * @see \Civi\Token\Event\TokenRenderEvent
20 * @deprecated - You may simply use the event name directly. dev/core#1744
21 */
22 const TOKEN_RENDER = 'civi.token.render';
23
24 }