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