-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembershiprecord.php
316 lines (289 loc) · 10.8 KB
/
membershiprecord.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<?php
/*
+--------------------------------------------------------------------+
| CiviCRM version 4.7 |
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC (c) 2004-2017 |
+--------------------------------------------------------------------+
| This file belongs to CiviCRM's Membershiprecord extension. |
| |
+--------------------------------------------------------------------+
*/
require_once 'membershiprecord.civix.php';
/**
* Implements hook_civicrm_config().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
*/
function membershiprecord_civicrm_config(&$config) {
_membershiprecord_civix_civicrm_config($config);
}
/**
* Implements hook_civicrm_xmlMenu().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_xmlMenu
*/
function membershiprecord_civicrm_xmlMenu(&$files) {
_membershiprecord_civix_civicrm_xmlMenu($files);
}
/**
* Implements hook_civicrm_install().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
*/
function membershiprecord_civicrm_install() {
_membershiprecord_civix_civicrm_install();
}
/**
* Implements hook_civicrm_postInstall().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_postInstall
*/
function membershiprecord_civicrm_postInstall() {
_membershiprecord_civix_civicrm_postInstall();
// creates the Membership Terms table and fills in the current memberships
$upgrader_obj = new CRM_Membershiprecord_Upgrader('Membershiprecord', __DIR__);
$upgrader_obj->install();
}
/**
* Implements hook_civicrm_uninstall().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_uninstall
*/
function membershiprecord_civicrm_uninstall() {
_membershiprecord_civix_civicrm_uninstall();
// drops the Membership Terms table
$upgrader_obj = new CRM_Membershiprecord_Upgrader('Membershiprecord', __DIR__);
$upgrader_obj->uninstall();
}
/**
* Implements hook_civicrm_enable().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
*/
function membershiprecord_civicrm_enable() {
_membershiprecord_civix_civicrm_enable();
}
/**
* Implements hook_civicrm_disable().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_disable
*/
function membershiprecord_civicrm_disable() {
_membershiprecord_civix_civicrm_disable();
}
/**
* Implements hook_civicrm_upgrade().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_upgrade
*/
function membershiprecord_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
return _membershiprecord_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 membershiprecord_civicrm_managed(&$entities) {
_membershiprecord_civix_civicrm_managed($entities);
}
/**
* Implements hook_civicrm_caseTypes().
*
* Generate a list of case-types.
*
* Note: This hook only runs in CiviCRM 4.4+.
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_caseTypes
*/
function membershiprecord_civicrm_caseTypes(&$caseTypes) {
_membershiprecord_civix_civicrm_caseTypes($caseTypes);
}
/**
* Implements hook_civicrm_angularModules().
*
* Generate a list of Angular modules.
*
* Note: This hook only runs in CiviCRM 4.5+. It may
* use features only available in v4.6+.
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_angularModules
*/
function membershiprecord_civicrm_angularModules(&$angularModules) {
_membershiprecord_civix_civicrm_angularModules($angularModules);
}
/**
* Implements hook_civicrm_alterSettingsFolders().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_alterSettingsFolders
*/
function membershiprecord_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
_membershiprecord_civix_civicrm_alterSettingsFolders($metaDataFolders);
}
//BOR preProcess and navigationMenu (auto-generated)
/**
* Implements hook_civicrm_preProcess().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_preProcess
*
function membershiprecord_civicrm_preProcess($formName, &$form) {
} // */
/**
* Implements hook_civicrm_navigationMenu().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_navigationMenu
*
function membershiprecord_civicrm_navigationMenu(&$menu) {
_membershiprecord_civix_insert_navigation_menu($menu, NULL, array(
'label' => ts('The Page', array('domain' => 'org.civicrm.membershiprecord')),
'name' => 'the_page',
'url' => 'civicrm/the-page',
'permission' => 'access CiviReport,access CiviContribute',
'operator' => 'OR',
'separator' => 0,
));
_membershiprecord_civix_navigationMenu($menu);
} // */
//EOR
/**
* Alter tpl file to include a different tpl file
* @param string $formName name of the form
* @param object $form (reference) form object
* @param string $context page or form
* @param string $tplName (reference) change this if required to the altered tpl file
*/
function membershiprecord_civicrm_alterTemplateFile($formName, &$form, $context, &$tplName) {
$formsToTouch = array(
'CRM_Member_Page_Tab' => array('path' => 'CRM', 'file' => 'MembershipTerm/MembershipTab'),
// 'CRM_Contact_Page_DashBoard' => array('path' => 'CRM', 'file' => 'MembershipTerm/ContactDashBoard'),
);
if(!array_key_exists($formName, $formsToTouch)) {
return;
}
$possibleTpl = $formsToTouch[$formName]['path'] . '/' . $formsToTouch[$formName]['file']. '.tpl';
$template = CRM_Core_Smarty::singleton();
if ($template->template_exists($possibleTpl)) {
$tplName = $possibleTpl;
}
}
/**
* Upon a membership payment, add a new term.
* @param Object $dao the DAO object that has been saved
*/
function membershiprecord_civicrm_postSave_civicrm_membership_payment($dao) {
CRM_Membershiprecord_BAO_MembershipTerm::addMembershipTerm($dao->contribution_id);
}
//BOR Other Possible Interactions
/**
* Upon membership creation, add a new term.
* [HOWEVER the payment does not exist at this point]
* @param string $op operation being performed with CiviCRM object
* @param string $objectName a component of CiviCRM
* @param string $objectId the unique identifier for the object.
* @param string objectRef the reference to the object if available.
*
function membershiprecord_civicrm_post($op, $objectName, $objectId, &$objectRef) {
if ($op == 'create' && $objectName == 'Membership') {
// here could call CRM_Membershiprecord_BAO_MembershipTerm::addMembershipTerm
}
} // */
/**
* Access the content of a specific template in order to alter it
* [HOWEVER alterTemplateFile allows more flexibility and interaction with variables from CRM files]
* https://docs.civicrm.org/dev/en/master/hooks/hook_civicrm_alterContent/
* @param string $content - previously generated content
* @param string $context - context of content - page or form
* @param string $tplName - the file name of the tpl
* @param object $object - a reference to the page or form object
*
function membershiprecord_civicrm_alterContent( &$content, $context, $tplName, &$object ) {
if($context == "page") {
if(preg_match("/^MembershipTerm[\/\\\]MembershipTab\.tpl$/i", $tplName)) {
$content = "<p class=\"warning\">This page was modified by the Membershiprecord extension</p>$content";
}
}
} // */
/**
* [FOR CREATING a new tab - part of the example from docs]
* Called when composing the tabs interface used for contacts, contributions and events
* @param $tabset - name of the screen or visual element
* @param $tabs - the array of tabs that will be displayed
* @param $context - extra data about the screen or context in which the tab is used
* https://docs.civicrm.org/dev/en/master/hooks/hook_civicrm_tabset/
*
function civitest_civicrm_tabset($tabsetName, &$tabs, $context) {
//check if the tabset is Contact Summary Page
if ($tabsetName == 'civicrm/contact/view') {
// unset the contribition tab, i.e. remove it from the page
unset( $tabs[1] );
$contactId = $context['contact_id'];
// let's add a new "contribution" tab with a different name and put it last
// this is just a demo, in the real world, you would create a url which would
// return an html snippet etc.
$url = CRM_Utils_System::url( 'civicrm/contact/view/contribution',
"reset=1&snippet=1&force=1&cid=$contactID" );
// $url should return in 4.4 and prior an HTML snippet e.g. '<div><p>....';
// in 4.5 and higher this needs to be encoded in json. E.g. json_encode(array('content' => <html form snippet as previously provided>));
// or CRM_Core_Page_AJAX::returnJsonResponse($content) where $content is the html code
// in the first cases you need to echo the return and then exit, if you use CRM_Core_Page method you do not need to worry about this.
$tabs[] = array( 'id' => 'mySupercoolTab',
'url' => $url,
'title' => 'Contribution Tab Renamed',
'weight' => 300,
);
}
} // */
/**
* Allows MySQL triggers definition
* https://docs.civicrm.org/dev/en/master/hooks/hook_civicrm_trigger_info/
* @param array $info - array of triggers to be created
* @param string $tableName - not sure how this bit works
*
function regionfields_civicrm_triggerInfo(&$info, $tableName) {
$table_name = 'civicrm_value_region_13';
$customFieldID = 45;
$columnName = 'region_45';
$sourceTable = 'civicrm_address';
$locationPriorityOrder = '1, 3, 5, 2, 4, 6'; // hard coded prioritisation of addresses
$zipTable = 'CANYRegion';
if(civicrm_api3('custom_field', 'getcount', array('id' => $customFieldID, 'column_name' => 'region_45', 'is_active' => 1)) == 0) {
return;
}
$sql = "
REPLACE INTO `$table_name` (entity_id, $columnName)
SELECT * FROM (
SELECT contact_id, b.region
FROM
civicrm_address a INNER JOIN $zipTable b ON a.postal_code = b.zip
WHERE a.contact_id = NEW.contact_id
ORDER BY FIELD(location_type_id, $locationPriorityOrder )
) as regionlist
GROUP BY contact_id;
";
$sql_field_parts = array();
$info[] = array(
'table' => $sourceTable,
'when' => 'AFTER',
'event' => 'INSERT',
'sql' => $sql,
);
$info[] = array(
'table' => $sourceTable,
'when' => 'AFTER',
'event' => 'UPDATE',
'sql' => $sql,
);
// For delete, we reference OLD.contact_id instead of NEW.contact_id
$sql = str_replace('NEW.contact_id', 'OLD.contact_id', $sql);
$info[] = array(
'table' => $sourceTable,
'when' => 'AFTER',
'event' => 'DELETE',
'sql' => $sql,
);
} // */
//EOR