Merge pull request #7531 from JKingsnorth/CRM-17261
[civicrm-core.git] / CRM / Member / Tokens.php
CommitLineData
46f5566c
TO
1<?php
2
3/*
4 +--------------------------------------------------------------------+
3435af9a 5 | CiviCRM version 4.7 |
46f5566c
TO
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2015 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29/**
30 * Class CRM_Member_Tokens
31 *
32 * Generate "member.*" tokens.
33 *
34 * This TokenSubscriber was produced by refactoring the code from the
35 * scheduled-reminder system with the goal of making that system
36 * more flexible. The current implementation is still coupled to
37 * scheduled-reminders. It would be good to figure out a more generic
38 * implementation which is not tied to scheduled reminders, although
39 * that is outside the current scope.
40 */
41class CRM_Member_Tokens extends \Civi\Token\AbstractTokenSubscriber {
42
70599df6 43 /**
44 * Class constructor.
45 */
46f5566c
TO
46 public function __construct() {
47 parent::__construct('membership', array(
48 'fee' => ts('Membership Fee'),
49 'id' => ts('Membership ID'),
50 'join_date' => ts('Membership Join Date'),
51 'start_date' => ts('Membership Start Date'),
52 'end_date' => ts('Membership End Date'),
53 'status' => ts('Membership Status'),
54 'type' => ts('Membership Type'),
55 ));
56 }
57
e8e8f3ad 58 /**
59 * Is token active.
60 *
61 * @param \Civi\Token\TokenProcessor $processor
62 *
63 * @return bool
64 */
46f5566c
TO
65 public function checkActive(\Civi\Token\TokenProcessor $processor) {
66 // Extracted from scheduled-reminders code. See the class description.
67 return
68 !empty($processor->context['actionMapping'])
69 && $processor->context['actionMapping']->getEntity() === 'civicrm_membership';
70 }
71
f9ec2da6
TO
72 public function alterActionScheduleQuery(\Civi\ActionSchedule\Event\MailingQueryEvent $e) {
73 if ($e->mapping->getEntity() !== 'civicrm_membership') {
74 return;
75 }
76
77 $e->query
78 ->select('e.*') // FIXME: seems too broad.
79 ->select('mt.minimum_fee as fee, e.id as id , e.join_date, e.start_date, e.end_date, ms.name as status, mt.name as type')
80 ->join('mt', "!casMailingJoinType civicrm_membership_type mt ON e.membership_type_id = mt.id")
81 ->join('ms', "!casMailingJoinType civicrm_membership_status ms ON e.status_id = ms.id");
82 }
83
46f5566c
TO
84 /**
85 * Evaluate the content of a single token.
86 *
87 * @param \Civi\Token\TokenRow $row
88 * The record for which we want token values.
ad37ac8e 89 * @param string $entity
46f5566c
TO
90 * @param string $field
91 * The name of the token field.
92 * @param mixed $prefetch
93 * Any data that was returned by the prefetch().
ad37ac8e 94 *
46f5566c
TO
95 * @return mixed
96 */
97 public function evaluateToken(\Civi\Token\TokenRow $row, $entity, $field, $prefetch = NULL) {
98 $actionSearchResult = $row->context['actionSearchResult'];
99
100 if (in_array($field, array('start_date', 'end_date', 'join_date'))) {
101 $row->tokens($entity, $field, \CRM_Utils_Date::customFormat($actionSearchResult->$field));
102 }
103 elseif (isset($actionSearchResult->$field)) {
104 $row->tokens($entity, $field, $actionSearchResult->$field);
105 }
106 else {
107 $row->tokens($entity, $field, '');
108 }
109 }
110
111}