bde50907584d202be33b6524e53372125c560e2b
[civicrm-core.git] / CRM / UF / Page / Group.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * Create a page for displaying UF Groups.
38 *
39 * Heart of this class is the run method which checks
40 * for action type and then displays the appropriate
41 * page.
42 *
43 */
44 class CRM_UF_Page_Group extends CRM_Core_Page {
45
46 /**
47 * The action links that we need to display for the browse screen
48 *
49 * @var array
50 */
51 private static $_actionLinks = NULL;
52
53 /**
54 * Get the action links for this page.
55 *
56 * @param
57 *
58 * @return array $_actionLinks
59 *
60 */
61 function &actionLinks() {
62 // check if variable _actionsLinks is populated
63 if (!self::$_actionLinks) {
64 // helper variable for nicer formatting
65 $copyExtra = ts('Are you sure you want to make a copy of this Profile?');
66 self::$_actionLinks = array(
67 CRM_Core_Action::BROWSE => array(
68 'name' => ts('Fields'),
69 'url' => 'civicrm/admin/uf/group/field',
70 'qs' => 'reset=1&action=browse&gid=%%id%%',
71 'title' => ts('View and Edit Fields'),
72 ),
73 CRM_Core_Action::UPDATE => array(
74 'name' => ts('Settings'),
75 'url' => 'civicrm/admin/uf/group/update',
76 'qs' => 'action=update&id=%%id%%&context=group',
77 'title' => ts('Edit CiviCRM Profile Group'),
78 ),
79 CRM_Core_Action::PREVIEW => array(
80 'name' => ts('Preview'),
81 'url' => 'civicrm/admin/uf/group',
82 'qs' => 'action=preview&id=%%id%%&field=0&context=group',
83 'title' => ts('Edit CiviCRM Profile Group'),
84 ),
85 CRM_Core_Action::ADD => array(
86 'name' => ts('Use Profile-Create Mode'),
87 'url' => 'civicrm/profile/create',
88 'qs' => 'gid=%%id%%&reset=1',
89 'title' => ts('Use Profile-Create Mode'),
90 ),
91 CRM_Core_Action::DISABLE => array(
92 'name' => ts('Disable'),
93 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_Core_BAO_UFGroup' . '\',\'' . 'enable-disable\',0,\'UFGroup' . '\' );"',
94 'ref' => 'disable-action',
95 'title' => ts('Disable CiviCRM Profile Group'),
96 ),
97 CRM_Core_Action::ENABLE => array(
98 'name' => ts('Enable'),
99 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_Core_BAO_UFGroup' . '\',\'' . 'disable-enable\',0,\'UFGroup' . '\' );"',
100 'ref' => 'enable-action',
101 'title' => ts('Enable CiviCRM Profile Group'),
102 ),
103 CRM_Core_Action::DELETE => array(
104 'name' => ts('Delete'),
105 'url' => 'civicrm/admin/uf/group',
106 'qs' => 'action=delete&id=%%id%%',
107 'title' => ts('Delete CiviCRM Profile Group'),
108 ),
109 CRM_Core_Action::PROFILE => array(
110 'name' => ts('HTML Form Snippet'),
111 'url' => 'civicrm/admin/uf/group',
112 'qs' => 'action=profile&gid=%%id%%',
113 'title' => ts('HTML Form Snippet for this Profile'),
114 ),
115 CRM_Core_Action::COPY => array(
116 'name' => ts('Copy Profile'),
117 'url' => 'civicrm/admin/uf/group',
118 'qs' => 'action=copy&gid=%%id%%',
119 'title' => ts('Make a Copy of CiviCRM Profile Group'),
120 'extra' => 'onclick = "return confirm(\'' . $copyExtra . '\');"',
121 ),
122 );
123 }
124 return self::$_actionLinks;
125 }
126
127 /**
128 * Run the page.
129 *
130 * This method is called after the page is created. It checks for the
131 * type of action and executes that action.
132 * Finally it calls the parent's run method.
133 *
134 * @param
135 *
136 * @return void
137 * @access public
138 */
139 function run() {
140 // get the requested action
141 $action = CRM_Utils_Request::retrieve('action', 'String',
142 $this, FALSE,
143 // default to 'browse'
144 'browse'
145 );
146
147 // assign vars to templates
148 $this->assign('action', $action);
149 $id = CRM_Utils_Request::retrieve('id', 'Positive',
150 $this, FALSE, 0
151 );
152
153 //set the context and then start w/ action.
154 $this->setContext($id, $action);
155
156 // what action to take ?
157 if ($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD | CRM_Core_Action::DELETE | CRM_Core_Action::DISABLE)) {
158 $this->edit($id, $action);
159 }
160 else {
161 // if action is enable or disable do the needful.
162 if ($action & CRM_Core_Action::ENABLE) {
163 CRM_Core_BAO_UFGroup::setIsActive($id, 1);
164
165 // update cms integration with registration / my account
166 CRM_Utils_System::updateCategories();
167 }
168 elseif ($action & CRM_Core_Action::PROFILE) {
169 $this->profile();
170 CRM_Utils_System::setTitle(ts('%1 - HTML Form Snippet', array(1 => $this->_title)));
171 }
172 elseif ($action & CRM_Core_Action::PREVIEW) {
173 $this->preview($id, $action);
174 }
175 elseif ($action & CRM_Core_Action::COPY) {
176 $this->copy();
177 }
178 // finally browse the uf groups
179 $this->browse();
180 }
181 // parent run
182 return parent::run();
183 }
184
185 /**
186 * This function is to make a copy of a profile, including
187 * all the fields in the profile
188 *
189 * @return void
190 * @access public
191 */
192 function copy() {
193 $gid = CRM_Utils_Request::retrieve('gid', 'Positive',
194 $this, TRUE, 0, 'GET'
195 );
196
197 CRM_Core_BAO_UFGroup::copy($gid);
198 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/admin/uf/group', 'reset=1'));
199 }
200
201 /**
202 * This function is for profile mode (standalone html form ) for uf group
203 *
204 * @return void
205 * @access public
206 */
207 function profile() {
208 $config = CRM_Core_Config::singleton();
209
210 // reassign resource base to be the full url, CRM-4660
211 $config->resourceBase = $config->userFrameworkResourceURL;
212 $config->useFrameworkRelativeBase = $config->userFrameworkBaseURL;
213
214 $gid = CRM_Utils_Request::retrieve('gid', 'Positive',
215 $this, FALSE, 0, 'GET'
216 );
217 $controller = new CRM_Core_Controller_Simple('CRM_Profile_Form_Edit', ts('Create'), CRM_Core_Action::ADD,
218 FALSE, FALSE, TRUE
219 );
220 $controller->reset();
221 $controller->process();
222 $controller->set('gid', $gid);
223 $controller->setEmbedded(TRUE);
224 $controller->run();
225 $template = CRM_Core_Smarty::singleton();
226 $template->assign('gid', $gid);
227 $template->assign('tplFile', 'CRM/Profile/Form/Edit.tpl');
228 $profile = trim($template->fetch('CRM/common/commonCSS.tpl'));
229 $profile .= trim($template->fetch('CRM/Form/default.tpl'));
230
231 // not sure how to circumvent our own navigation system to generate the right form url
232 $urlReplaceWith = 'civicrm/profile/create&amp;gid=' . $gid . '&amp;reset=1';
233 if ($config->userSystem->is_drupal && $config->cleanURL) {
234 $urlReplaceWith = 'civicrm/profile/create?gid=' . $gid . '&amp;reset=1';
235 }
236 $profile = str_replace('civicrm/admin/uf/group', $urlReplaceWith, $profile);
237
238 // FIXME: (CRM-3587) hack to make standalone profile work
239 // in wordpress and joomla without administrator login
240 if ($config->userFramework == 'Joomla') {
241 $profile = str_replace('/administrator/', '/index.php', $profile);
242 }
243 elseif ($config->userFramework == 'WordPress') {
244 $profile = str_replace('/wp-admin/admin.php', '/index.php', $profile);
245 }
246
247 // add jquery files
248 $profile = CRM_Utils_String::addJqueryFiles($profile);
249
250 $this->assign('profile', htmlentities($profile, ENT_NOQUOTES, 'UTF-8'));
251 //get the title of uf group
252 if ($gid) {
253 $title = CRM_Core_BAO_UFGroup::getTitle($gid);
254 $this->_title = $title;
255 }
256 else {
257 $title = 'Profile Form';
258 }
259
260 $this->assign('title', $title);
261 $this->assign('action', CRM_Core_Action::PROFILE);
262 $this->assign('isForm', 0);
263 }
264
265 /**
266 * edit uf group
267 *
268 * @param int $id uf group id
269 * @param string $action the action to be invoked
270 *
271 * @return void
272 * @access public
273 */
274 function edit($id, $action) {
275 // create a simple controller for editing uf data
276 $controller = new CRM_Core_Controller_Simple('CRM_UF_Form_Group', ts('CiviCRM Profile Group'), $action);
277 $this->setContext($id, $action);
278 $controller->set('id', $id);
279 $controller->setEmbedded(TRUE);
280 $controller->process();
281 $controller->run();
282 }
283
284 /**
285 * Browse all uf data groups.
286 *
287 * @param
288 *
289 * @return void
290 * @access public
291 * @static
292 */
293 function browse($action = NULL) {
294 $ufGroup = array();
295 $allUFGroups = array();
296 $allUFGroups = CRM_Core_BAO_UFGroup::getModuleUFGroup();
297 if (empty($allUFGroups)) {
298 return;
299 }
300
301 $ufGroups = CRM_Core_PseudoConstant::get('CRM_Core_DAO_UFField', 'uf_group_id');
302 CRM_Utils_Hook::aclGroup(CRM_Core_Permission::ADMIN, NULL, 'civicrm_uf_group', $ufGroups, $allUFGroups);
303
304 foreach ($allUFGroups as $id => $value) {
305 $ufGroup[$id] = array();
306 $ufGroup[$id]['id'] = $id;
307 $ufGroup[$id]['title'] = $value['title'];
308 $ufGroup[$id]['created_id'] = $value['created_id'];
309 $ufGroup[$id]['created_by'] = CRM_Contact_BAO_Contact::displayName($value['created_id']);
310 $ufGroup[$id]['description'] = $value['description'];
311 $ufGroup[$id]['is_active'] = $value['is_active'];
312 $ufGroup[$id]['group_type'] = $value['group_type'];
313 $ufGroup[$id]['is_reserved'] = $value['is_reserved'];
314
315 // form all action links
316 $action = array_sum(array_keys($this->actionLinks()));
317
318 // update enable/disable links depending on uf_group properties.
319 if ($value['is_active']) {
320 $action -= CRM_Core_Action::ENABLE;
321 }
322 else {
323 $action -= CRM_Core_Action::DISABLE;
324 }
325
326 // drop certain actions if the profile is reserved
327 if ($value['is_reserved']) {
328 $action -= CRM_Core_Action::UPDATE;
329 $action -= CRM_Core_Action::DISABLE;
330 $action -= CRM_Core_Action::DELETE;
331 }
332
333 $groupTypes = self::extractGroupTypes($value['group_type']);
334 $groupComponents = array('Contribution', 'Membership', 'Activity', 'Participant');
335
336 // drop Create, Edit and View mode links if profile group_type is Contribution, Membership, Activities or Participant
337 $componentFound = array_intersect($groupComponents, array_keys($groupTypes));
338 if (!empty($componentFound)) {
339 $action -= CRM_Core_Action::ADD;
340 }
341
342 $groupTypesString = '';
343 if (!empty($groupTypes)) {
344 $groupTypesStrings = array();
345 foreach ($groupTypes as $groupType => $typeValues) {
346 if (is_array($typeValues)) {
347 if ($groupType == 'Participant') {
348 foreach ($typeValues as $subType => $subTypeValues) {
349 $groupTypesStrings[] = $subType . '::' . implode(': ', $subTypeValues);
350 }
351 }
352 else {
353 $groupTypesStrings[] = $groupType . '::' . implode(': ', current($typeValues));
354 }
355 }
356 else {
357 $groupTypesStrings[] = $groupType;
358 }
359 }
360 $groupTypesString = implode(', ', $groupTypesStrings);
361 }
362 $ufGroup[$id]['group_type'] = $groupTypesString;
363
364 $ufGroup[$id]['action'] = CRM_Core_Action::formLink(self::actionLinks(), $action,
365 array('id' => $id)
366 );
367 //get the "Used For" from uf_join
368 $ufGroup[$id]['module'] = implode(', ', CRM_Core_BAO_UFGroup::getUFJoinRecord($id, TRUE));
369 }
370
371 $this->assign('rows', $ufGroup);
372 }
373
374 /**
375 * this function is for preview mode for ufoup
376 *
377 * @param int $id uf group id
378 *
379 * @return void
380 * @access public
381 */
382 function preview($id, $action) {
383 $controller = new CRM_Core_Controller_Simple('CRM_UF_Form_Preview', ts('CiviCRM Profile Group Preview'), NULL);
384 $controller->set('id', $id);
385 $controller->setEmbedded(TRUE);
386 $controller->process();
387 $controller->run();
388 }
389
390 function setContext($id, $action) {
391 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
392
393 //we need to differentiate context for update and preview profile.
394 if (!$context && !($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::PREVIEW))) {
395 $context = 'group';
396 }
397
398 if ($context == 'field') {
399 $url = CRM_Utils_System::url('civicrm/admin/uf/group/field', "reset=1&action=browse&gid={$id}");
400 }
401 else {
402 $url = CRM_Utils_System::url('civicrm/admin/uf/group', 'reset=1&action=browse');
403 }
404
405 $session = CRM_Core_Session::singleton();
406 $session->pushUserContext($url);
407 }
408
409 static function extractGroupTypes($groupType) {
410 $returnGroupTypes = array();
411 if (!$groupType) {
412 return $returnGroupTypes;
413 }
414
415 $groupTypeParts = explode(CRM_Core_DAO::VALUE_SEPARATOR, $groupType);
416 foreach (explode(',', $groupTypeParts[0]) as $type) {
417 $returnGroupTypes[$type] = $type;
418 }
419
420 if (CRM_Utils_Array::value(1, $groupTypeParts)) {
421 foreach (explode(',', $groupTypeParts[1]) as $typeValue) {
422 $groupTypeValues = $valueLabels = array();
423 $valueParts = explode(':', $typeValue);
424 $typeName = NULL;
425 switch ($valueParts[0]) {
426 case 'ContributionType':
427 $typeName = 'Contribution';
428 $valueLabels = CRM_Contribute_PseudoConstant::financialType();
429 break;
430
431 case 'ParticipantRole':
432 $typeName = 'Participant';
433 $valueLabels = CRM_Event_PseudoConstant::participantRole();
434 break;
435
436 case 'ParticipantEventName':
437 $typeName = 'Participant';
438 $valueLabels = CRM_Event_PseudoConstant::event();
439 break;
440
441 case 'ParticipantEventType':
442 $typeName = 'Participant';
443 $valueLabels = CRM_Event_PseudoConstant::eventType();
444 break;
445
446 case 'MembershipType':
447 $typeName = 'Membership';
448 $valueLabels = CRM_Member_PseudoConstant::membershipType();
449 break;
450
451 case 'ActivityType':
452 $typeName = 'Activity';
453 $valueLabels = CRM_Core_PseudoConstant::ActivityType(TRUE, TRUE, FALSE, 'label', TRUE);
454 break;
455 }
456
457 foreach ($valueParts as $val) {
458 if (CRM_Utils_Rule::integer($val)) {
459 $groupTypeValues[$val] = CRM_Utils_Array::value($val, $valueLabels);
460 }
461 }
462
463 if (!is_array($returnGroupTypes[$typeName])) {
464 $returnGroupTypes[$typeName] = array();
465 }
466 $returnGroupTypes[$typeName][$valueParts[0]] = $groupTypeValues;
467 }
468 }
469 return $returnGroupTypes;
470 }
471 }
472