Merge pull request #16629 from WeMoveEU/core-1620
[civicrm-core.git] / CRM / Core / TokenTrait.php
CommitLineData
88d88c53
MW
1<?php
2
3trait CRM_Core_TokenTrait {
4
5 private $basicTokens;
6 private $customFieldTokens;
7
8 /**
9 * CRM_Entity_Tokens constructor.
10 */
11 public function __construct() {
12 parent::__construct($this->getEntityName(), array_merge(
13 $this->getBasicTokens(),
14 $this->getCustomFieldTokens()
15 ));
16 }
17
18 /**
19 * @inheritDoc
20 */
21 public function checkActive(\Civi\Token\TokenProcessor $processor) {
51e25a23 22 return in_array($this->getEntityContextSchema(), $processor->context['schema']) ||
88d88c53
MW
23 (!empty($processor->context['actionMapping'])
24 && $processor->context['actionMapping']->getEntity() === $this->getEntityTableName());
25 }
26
27 /**
28 * @inheritDoc
29 */
30 public function getActiveTokens(\Civi\Token\Event\TokenValueEvent $e) {
31 $messageTokens = $e->getTokenProcessor()->getMessageTokens();
32 if (!isset($messageTokens[$this->entity])) {
33 return NULL;
34 }
35
36 $activeTokens = [];
37 // if message token contains '_\d+_', then treat as '_N_'
38 foreach ($messageTokens[$this->entity] as $msgToken) {
39 if (array_key_exists($msgToken, $this->tokenNames)) {
40 $activeTokens[] = $msgToken;
41 }
42 else {
43 $altToken = preg_replace('/_\d+_/', '_N_', $msgToken);
44 if (array_key_exists($altToken, $this->tokenNames)) {
45 $activeTokens[] = $msgToken;
46 }
47 }
48 }
49 return array_unique($activeTokens);
50 }
51
52 /**
53 * Find the fields that we need to get to construct the tokens requested.
54 * @param array $tokens list of tokens
55 * @return array list of fields needed to generate those tokens
56 */
57 public function getReturnFields($tokens) {
58 // Make sure we always return something
59 $fields = ['id'];
60
61 foreach (array_intersect($tokens,
62 array_merge(array_keys(self::getBasicTokens()), array_keys(self::getCustomFieldTokens()))
63 ) as $token) {
64 if (isset(self::$fieldMapping[$token])) {
65 $fields = array_merge($fields, self::$fieldMapping[$token]);
66 }
67 else {
68 $fields[] = $token;
69 }
70 }
71 return array_unique($fields);
72 }
73
74 /**
75 * Get the tokens for custom fields
76 * @return array token name => token label
77 */
78 protected function getCustomFieldTokens() {
79 if (!isset($this->customFieldTokens)) {
80 $this->customFieldTokens = \CRM_Utils_Token::getCustomFieldTokens(ucfirst($this->getEntityName()));
81 }
82 return $this->customFieldTokens;
83 }
84
85}