-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpiredcreditcards.php
170 lines (151 loc) · 4.95 KB
/
expiredcreditcards.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
require_once 'expiredcreditcards.civix.php';
use CRM_Expiredcreditcards_ExtensionUtil as E;
/**
* Implements hook_civicrm_config().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
*/
function expiredcreditcards_civicrm_config(&$config) {
_expiredcreditcards_civix_civicrm_config($config);
}
/**
* Implements hook_civicrm_install().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
*/
function expiredcreditcards_civicrm_install() {
_expiredcreditcards_civix_civicrm_install();
}
/**
* Implements hook_civicrm_postInstall().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_postInstall
*/
function expiredcreditcards_civicrm_postInstall() {
_expiredcreditcards_civix_civicrm_postInstall();
}
/**
* Implements hook_civicrm_uninstall().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_uninstall
*/
function expiredcreditcards_civicrm_uninstall() {
_expiredcreditcards_civix_civicrm_uninstall();
}
/**
* Implements hook_civicrm_enable().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
*/
function expiredcreditcards_civicrm_enable() {
_expiredcreditcards_civix_civicrm_enable();
}
/**
* Implements hook_civicrm_disable().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
*/
function expiredcreditcards_civicrm_disable() {
_expiredcreditcards_civix_civicrm_disable();
}
/**
* Implements hook_civicrm_upgrade().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_upgrade
*/
function expiredcreditcards_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
return _expiredcreditcards_civix_civicrm_upgrade($op, $queue);
}
/**
* Implements hook_civicrm_managed().
*
* Generate a list of entities to create/deactivate/delete when this module
* is installed, disabled, uninstalled.
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_managed
*/
function expiredcreditcards_civicrm_managed(&$entities) {
$entities[] = array(
'module' => 'au.com.agileware.expiredcreditcards',
'name' => 'find_expired_credit_cards',
'entity' => 'Job',
'update' => 'never', // Ensure local changes are kept, eg. setting the job active
'params' => array(
'version' => 3,
'run_frequency' => 'Daily',
'name' => 'Find Expired Credit Cards',
'description' => 'Check all recurring contributions and find attached payment tokens with expired credit cards.',
'api_entity' => 'PaymentToken',
'api_action' => 'findexpired',
'parameters' => '',
'is_active' => '1',
),
);
$entities[] = array(
'module' => 'au.com.agileware.expiredcreditcards',
'name' => 'expired_credit_cards_activity_type',
'entity' => 'OptionValue',
'update' => 'never',
'params' => array(
'version' => 3,
'option_group_id' => 'activity_type',
'label' => 'Credit Card Expired',
'name' => 'Credit_Card_Expired',
'description' => 'Credit card expired to process recurring contribution',
'is_reserved' => 1,
),
);
}
/**
* Implements hook_civicrm_entityTypes().
*
* Declare entity types provided by this module.
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_entityTypes
*/
function expiredcreditcards_civicrm_entityTypes(&$entityTypes) {
_expiredcreditcards_civix_civicrm_entityTypes($entityTypes);
}
/**
* Implements hook_civicrm_tokens().
*/
function expiredcreditcards_civicrm_tokens(&$tokens) {
$tokens['activity'] = array(
'activity.source_record' => ts('Activity Source Record'),
);
}
/**
* Implements hook_civicrm_tokenValues().
*/
function expiredcreditcards_civicrm_tokenValues(&$values, $cids, $job = NULL, $tokens = array(), $context = NULL) {
if (!is_array($cids)) {
$values['activity.source_record'] = '[activitySourceRecord]';
}
else {
foreach ($cids as $cid) {
$values[$cid]['activity.source_record'] = '[activitySourceRecord]';
}
}
}
/**
* Implements hook_civicrm_alterMailParams().
*/
function expiredcreditcards_civicrm_alterMailParams(&$params, $context) {
if (isset($params['token_params'])) {
if (isset($params['token_params']['entityTable']) && $params['token_params']['entityTable'] == 'civicrm_activity' && isset($params['token_params']['entity_id']) && !empty($params['token_params']['entity_id'])) {
$activityId = $params['token_params']['entity_id'];
try {
$activity = civicrm_api3('Activity', 'getsingle', array(
'id' => $activityId,
));
$sourceRecordId = $activity['source_record_id'];
$params['html'] = str_replace('[activitySourceRecord]', $sourceRecordId, $params['html']);
$params['subject'] = str_replace('[activitySourceRecord]', $sourceRecordId, $params['subject']);
$params['text'] = str_replace('[activitySourceRecord]', $sourceRecordId, $params['text']);
}
catch (CiviCRM_API3_Exception $e) {
}
}
}
}