This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
groupmembership.php
166 lines (148 loc) · 4.88 KB
/
groupmembership.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
<?php
require_once 'groupmembership.civix.php';
/**
* Implementation of hook_civicrm_config
*/
function groupmembership_civicrm_config(&$config) {
_groupmembership_civix_civicrm_config($config);
}
/**
* Implementation of hook_civicrm_xmlMenu
*
* @param $files array(string)
*/
function groupmembership_civicrm_xmlMenu(&$files) {
_groupmembership_civix_civicrm_xmlMenu($files);
}
/**
* Implementation of hook_civicrm_install
*/
function groupmembership_civicrm_install() {
return _groupmembership_civix_civicrm_install();
}
/**
* Implementation of hook_civicrm_uninstall
*/
function groupmembership_civicrm_uninstall() {
return _groupmembership_civix_civicrm_uninstall();
}
/**
* Implementation of hook_civicrm_enable
*/
function groupmembership_civicrm_enable() {
return _groupmembership_civix_civicrm_enable();
}
function groupmembership_civicrm_navigationMenu(&$params) {
// get the maximum key of $params using method mentioned in discussion
// https://issues.civicrm.org/jira/browse/CRM-13803
$navId = CRM_Core_DAO::singleValueQuery("SELECT max(id) FROM civicrm_navigation");
if (is_integer($navId)) {
$navId++;
}
// Find the Memberships menu
foreach($params as $key => $value) {
if ('Memberships' == $value['attributes']['name']) {
$params[$key]['child'][$navId] = array (
'attributes' => array (
'label' => 'Group Membership - General Settings',
'name' => 'group membership general settings',
'url' => 'civicrm/groupmembership/generalsettings?reset=1',
'permission' => 'access CiviMember,administer CiviCRM',
'operator' => 'AND',
'separator' => 2,
//'separator' => null,
'parentID' => $key,
'navID' => $navId,
'active' => 1
)
);
$navId++;
$params[$key]['child'][$navId] = array (
'attributes' => array (
'label' => 'Group Membership - Membership Settings',
'name' => 'group membership membership settings',
'url' => 'civicrm/groupmembership/membersettings?reset=1',
'permission' => 'access CiviMember,administer CiviCRM',
'operator' => 'AND',
'has_separator' => 0,
'parentID' => $key,
'navID' => $navId,
'active' => 1
)
);
}
}
}
/**
* Implementation of hook_civicrm_disable
*/
function groupmembership_civicrm_disable() {
return _groupmembership_civix_civicrm_disable();
}
/**
* Implementation of hook_civicrm_upgrade
*
* @param $op string, the type of operation being performed; 'check' or 'enqueue'
* @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks
*
* @return mixed based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending)
* for 'enqueue', returns void
*/
function groupmembership_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
return _groupmembership_civix_civicrm_upgrade($op, $queue);
}
/**
* Implementation of hook_civicrm_managed
*
* Generate a list of entities to create/deactivate/delete when this module
* is installed, disabled, uninstalled.
*/
function groupmembership_civicrm_managed(&$entities) {
return _groupmembership_civix_civicrm_managed($entities);
}
/**
* Implementation of hook_civicrm_buildForm
*
* Generate a list of entities to create/deactivate/delete when this module
* is installed, disabled, uninstalled.
*/
function groupmembership_civicrm_buildForm($formName, &$form) {
$valid_forms = array(
'CRM_Profile_Form_Edit',
'CRM_Contribute_Form_Contribution_ThankYou',
'CRM_Contribute_Form_Contribution_Main',
// 'CRM_Contribute_Form_Contribution_Confirm',
);
if(array_search($formName, $valid_forms) === FALSE) {
return;
}
$session = CRM_Core_Session::singleton();
$contact_id = $session->get('userID');
$contact_id = (isset($contact_id) && intval($contact_id) > 0) ? $contact_id : 0;
$settings = ca_freeform_groupmembership_getsettings();
// Family Member profile
if ($formName == 'CRM_Profile_Form_Edit') {
$gid = $form->getVar( '_gid' );
$valid_profiles = array();
foreach ($settings['general'] as $group) {
if ($group['group_member_profile']) {
$valid_profiles[] = $group['group_member_profile'];
}
}
if (array_search($gid,$valid_profiles) !== FALSE ) {
// Look for the submitter contact id and set it to the value passed or from the session
$submitter_contact_id = CRM_Utils_Array::value('scid', $_GET, $contact_id);
if ($submitter_contact_id > 0) {
if ($form->getAction() == CRM_Core_Action::ADD) {
$defaults['id'] = $submitter_contact_id;
$form->setDefaults($defaults);
}
}
}
}
}
function groupmembership_civicrm_pageRun(&$page) {
if ( $page->getVar('_name') == 'CRM_Contact_Page_View_UserDashBoard' ) {
ca_freeform_groupmembership_contact_dashboard($page);
}
}