generated from compucorp/uk.co.compucorp.civicrm.members-only-events
-
Notifications
You must be signed in to change notification settings - Fork 1
/
membersonlyevent.php
137 lines (125 loc) · 3.63 KB
/
membersonlyevent.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
<?php
require_once 'membersonlyevent.civix.php';
/**
* Implements hook_civicrm_config().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_config
*/
function membersonlyevent_civicrm_config(&$config) {
_membersonlyevent_civix_civicrm_config($config);
}
/**
* Implements hook_civicrm_install().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_install
*/
function membersonlyevent_civicrm_install() {
return _membersonlyevent_civix_civicrm_install();
}
/**
* Implements hook_civicrm_enable().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_enable
*/
function membersonlyevent_civicrm_enable() {
return _membersonlyevent_civix_civicrm_enable();
}
/**
* Implements hook_civicrm_permission().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_permission
*/
function membersonlyevent_civicrm_permission(&$permissions) {
$prefix = ts('Members-Only Event') . ': ';
$permissions['members only event registration'] = $prefix . ts('Can register for members-only events irrespective of membership status');
}
/**
* Implements hook_civicrm_tabset().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_tabset/
*/
function membersonlyevent_civicrm_tabset($tabsetName, &$tabs, $context) {
$listeners = [
new CRM_MembersOnlyEvent_Hook_Tabset_Event(),
];
foreach ($listeners as $currentListener) {
$currentListener->handle($tabsetName, $tabs, $context);
}
}
/**
* Implements hook_civicrm_pageRun().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_pageRun/
*
* Handler for pageRun hook.
*/
function membersonlyevent_civicrm_pageRun(&$page) {
$listeners = [
new CRM_MembersOnlyEvent_Hook_PageRun_Register(),
];
foreach ($listeners as $currentListener) {
$currentListener->handle($page);
}
}
/**
* Implements hook_civicrm_preProcess().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_preProcess/
*
* Handler for preProcess hook.
*/
function membersonlyevent_civicrm_preProcess($formName, &$form) {
$listeners = [
new CRM_MembersOnlyEvent_Hook_PreProcess_Register(),
];
foreach ($listeners as $currentListener) {
$currentListener->handle($formName, $form);
}
}
/**
* Implements hook_civicrm_navigationMenu().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_navigationMenu
*/
function membersonlyevent_civicrm_navigationMenu(&$menu) {
$membersonlyeventMenu = [
'label' => ts('Members Only Event Extension Configurations'),
'name' => 'membersonlyevent_configurations',
'url' => 'civicrm/admin/membersonlyevent',
'permission' => 'administer CiviCRM,edit all events',
'operator' => NULL,
'separator' => NULL,
];
_membersonlyevent_civix_insert_navigation_menu($menu, 'Administer/CiviEvent', $membersonlyeventMenu);
}
/**
* Implements hook_civicrm_entityTypes().
*/
function membersonlyevent_civicrm_entityTypes(&$entityTypes) {
$entityTypes[] = [
'name' => 'MembersOnlyEvent',
'class' => 'CRM_MembersOnlyEvent_DAO_MembersOnlyEvent',
'table' => 'membersonlyevent',
];
$entityTypes[] = [
'name' => 'EventGroup',
'class' => 'CRM_MembersOnlyEvent_DAO_EventGroup',
'table' => 'membersonlyevent_event_group',
];
}
/**
* Implements hook_civicrm_copy().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_copy/
*/
function membersonlyevent_civicrm_copy($objectName, &$object) {
if ($objectName != 'Event') {
return;
}
$listeners = [
new CRM_MembersOnlyEvent_Hook_Copy_Event(),
];
foreach ($listeners as $currentListener) {
$currentListener->handle($object);
}
}