Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
39de6fd5 | 4 | | CiviCRM version 4.6 | |
6a488035 | 5 | +--------------------------------------------------------------------+ |
06b69b18 | 6 | | Copyright CiviCRM LLC (c) 2004-2014 | |
6a488035 TO |
7 | +--------------------------------------------------------------------+ |
8 | | This file is a part of CiviCRM. | | |
9 | | | | |
10 | | CiviCRM is free software; you can copy, modify, and distribute it | | |
11 | | under the terms of the GNU Affero General Public License | | |
12 | | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. | | |
13 | | | | |
14 | | CiviCRM is distributed in the hope that it will be useful, but | | |
15 | | WITHOUT ANY WARRANTY; without even the implied warranty of | | |
16 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | |
17 | | See the GNU Affero General Public License for more details. | | |
18 | | | | |
19 | | You should have received a copy of the GNU Affero General Public | | |
20 | | License and the CiviCRM Licensing Exception along | | |
21 | | with this program; if not, contact CiviCRM LLC | | |
22 | | at info[AT]civicrm[DOT]org. If you have questions about the | | |
23 | | GNU Affero General Public License or the licensing of CiviCRM, | | |
24 | | see the CiviCRM license FAQ at http://civicrm.org/licensing | | |
25 | +--------------------------------------------------------------------+ | |
d25dd0ee | 26 | */ |
6a488035 TO |
27 | |
28 | /** | |
29 | * This class introduces component to the system and provides all the | |
30 | * information about it. It needs to extend CRM_Core_Component_Info | |
31 | * abstract class. | |
32 | * | |
33 | * @package CRM | |
06b69b18 | 34 | * @copyright CiviCRM LLC (c) 2004-2014 |
6a488035 TO |
35 | * $Id$ |
36 | * | |
37 | */ | |
38 | class CRM_Member_Info extends CRM_Core_Component_Info { | |
39 | ||
e7c15cb6 CW |
40 | /** |
41 | * @inheritDoc | |
42 | */ | |
6a488035 TO |
43 | protected $keyword = 'member'; |
44 | ||
bb3a214a | 45 | /** |
e7c15cb6 | 46 | * @inheritDoc |
bb3a214a EM |
47 | * Provides base information about the component. |
48 | * Needs to be implemented in component's information | |
49 | * class. | |
50 | * | |
a6c01b45 CW |
51 | * @return array |
52 | * collection of required component settings | |
bb3a214a EM |
53 | */ |
54 | /** | |
55 | * @return array | |
56 | */ | |
6a488035 TO |
57 | public function getInfo() { |
58 | return array( | |
59 | 'name' => 'CiviMember', | |
60 | 'translatedName' => ts('CiviMember'), | |
61 | 'title' => 'CiviCRM Membership Engine', | |
62 | 'search' => 1, | |
63 | 'showActivitiesInCore' => 1, | |
64 | ); | |
65 | } | |
66 | ||
67 | ||
bb3a214a | 68 | /** |
e7c15cb6 | 69 | * @inheritDoc |
bb3a214a EM |
70 | * Provides permissions that are used by component. |
71 | * Needs to be implemented in component's information | |
72 | * class. | |
73 | * | |
74 | * NOTE: if using conditionally permission return, | |
75 | * implementation of $getAllUnconditionally is required. | |
76 | * | |
77 | * @param bool $getAllUnconditionally | |
78 | * | |
72b3a70c CW |
79 | * @return array|null |
80 | * collection of permissions, null if none | |
bb3a214a EM |
81 | */ |
82 | /** | |
83 | * @param bool $getAllUnconditionally | |
84 | * | |
85 | * @return array|null | |
86 | */ | |
33777e4a | 87 | public function getPermissions($getAllUnconditionally = FALSE) { |
6a488035 TO |
88 | return array( |
89 | 'access CiviMember', | |
90 | 'edit memberships', | |
91 | 'delete in CiviMember', | |
92 | ); | |
93 | } | |
94 | ||
bb3a214a | 95 | /** |
e7c15cb6 | 96 | * @inheritDoc |
bb3a214a EM |
97 | * Provides information about user dashboard element |
98 | * offered by this component. | |
99 | * | |
72b3a70c CW |
100 | * @return array|null |
101 | * collection of required dashboard settings, | |
bb3a214a | 102 | * null if no element offered |
bb3a214a EM |
103 | */ |
104 | /** | |
105 | * @return array|null | |
106 | */ | |
6a488035 | 107 | public function getUserDashboardElement() { |
b09fe5ed | 108 | return array( |
353ffa53 | 109 | 'name' => ts('Memberships'), |
6a488035 TO |
110 | 'title' => ts('Your Membership(s)'), |
111 | // this is CiviContribute specific permission, since | |
112 | // there is no permission that could be checked for | |
113 | // CiviMember | |
114 | 'perm' => array('make online contributions'), | |
115 | 'weight' => 30, | |
116 | ); | |
117 | } | |
118 | ||
bb3a214a | 119 | /** |
e7c15cb6 | 120 | * @inheritDoc |
bb3a214a EM |
121 | * Provides information about user dashboard element |
122 | * offered by this component. | |
123 | * | |
72b3a70c CW |
124 | * @return array|null |
125 | * collection of required dashboard settings, | |
bb3a214a | 126 | * null if no element offered |
bb3a214a EM |
127 | */ |
128 | /** | |
129 | * @return array|null | |
130 | */ | |
6a488035 | 131 | public function registerTab() { |
b09fe5ed | 132 | return array( |
353ffa53 | 133 | 'title' => ts('Memberships'), |
6a488035 TO |
134 | 'url' => 'membership', |
135 | 'weight' => 30, | |
136 | ); | |
137 | } | |
138 | ||
bb3a214a | 139 | /** |
e7c15cb6 | 140 | * @inheritDoc |
bb3a214a EM |
141 | * Provides information about advanced search pane |
142 | * offered by this component. | |
143 | * | |
72b3a70c CW |
144 | * @return array|null |
145 | * collection of required pane settings, | |
bb3a214a | 146 | * null if no element offered |
bb3a214a EM |
147 | */ |
148 | /** | |
149 | * @return array|null | |
150 | */ | |
6a488035 | 151 | public function registerAdvancedSearchPane() { |
b09fe5ed | 152 | return array( |
353ffa53 | 153 | 'title' => ts('Memberships'), |
6a488035 TO |
154 | 'weight' => 30, |
155 | ); | |
156 | } | |
157 | ||
bb3a214a | 158 | /** |
e7c15cb6 | 159 | * @inheritDoc |
bb3a214a EM |
160 | * Provides potential activity types that this |
161 | * component might want to register in activity history. | |
162 | * Needs to be implemented in component's information | |
163 | * class. | |
164 | * | |
72b3a70c CW |
165 | * @return array|null |
166 | * collection of activity types | |
bb3a214a EM |
167 | */ |
168 | /** | |
169 | * @return array|null | |
170 | */ | |
6a488035 TO |
171 | public function getActivityTypes() { |
172 | return NULL; | |
173 | } | |
174 | ||
bb3a214a | 175 | /** |
4f1f1f2a | 176 | * add shortcut to Create New |
bb3a214a EM |
177 | * @param $shortCuts |
178 | * @param $newCredit | |
179 | */ | |
6a488035 TO |
180 | public function creatNewShortcut(&$shortCuts, $newCredit) { |
181 | if (CRM_Core_Permission::check('access CiviMember') && | |
182 | CRM_Core_Permission::check('edit memberships') | |
183 | ) { | |
6b5ca1ea | 184 | $shortCut[] = array( |
185 | 'path' => 'civicrm/member/add', | |
186 | 'query' => "reset=1&action=add&context=standalone", | |
187 | 'ref' => 'new-membership', | |
188 | 'title' => ts('Membership'), | |
189 | ); | |
6a488035 TO |
190 | if ($newCredit) { |
191 | $title = ts('Membership') . '<br /> (' . ts('credit card') . ')'; | |
6b5ca1ea | 192 | $shortCut[0]['shortCuts'][] = array( |
193 | 'path' => 'civicrm/member/add', | |
194 | 'query' => "reset=1&action=add&context=standalone&mode=live", | |
195 | 'ref' => 'new-membership-cc', | |
196 | 'title' => $title, | |
197 | ); | |
6a488035 | 198 | } |
6b5ca1ea | 199 | $shortCuts = array_merge($shortCuts, $shortCut); |
6a488035 TO |
200 | } |
201 | } | |
96025800 | 202 | |
6a488035 | 203 | } |