Merge pull request #12918 from davejenx/job_process_memberships_tests
[civicrm-core.git] / CRM / Contact / Page / View / ContactSmartGroup.php
CommitLineData
926dcf00
KJ
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
926dcf00 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
926dcf00
KJ
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 */
926dcf00
KJ
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
926dcf00
KJ
32 */
33class CRM_Contact_Page_View_ContactSmartGroup extends CRM_Core_Page {
34
559865a0
KJ
35 /**
36 * @var int contact id
37 */
38 public $_contactId;
39
926dcf00 40 /**
fe482240 41 * called when action is browse.
926dcf00 42 *
926dcf00 43 */
00be9182 44 public function browse() {
559865a0 45 $in = CRM_Contact_BAO_GroupContact::getContactGroup($this->_contactId, 'Added');
926dcf00
KJ
46
47 // keep track of all 'added' contact groups so we can remove them from the smart group
48 // section
49 $staticGroups = array();
50 if (!empty($in)) {
51 foreach ($in as $group) {
52 $staticGroups[$group['group_id']] = 1;
53 }
54 }
55
56 $allGroup = CRM_Contact_BAO_GroupContactCache::contactGroup($this->_contactId);
ce80b209 57 $this->assign('groupSmart', NULL);
559865a0 58 $this->assign('groupParent', NULL);
926dcf00
KJ
59
60 if (!empty($allGroup)) {
ce80b209 61 $smart = $parent = array();
926dcf00
KJ
62 foreach ($allGroup['group'] as $group) {
63 // delete all smart groups which are also in static groups
64 if (isset($staticGroups[$group['id']])) {
65 continue;
66 }
67 if (empty($group['children'])) {
68 $smart[] = $group;
69 }
70 else {
71 $parent[] = $group;
72 }
73 }
74
75 if (!empty($smart)) {
76 $this->assign_by_ref('groupSmart', $smart);
77 }
78 if (!empty($parent)) {
79 $this->assign_by_ref('groupParent', $parent);
80 }
81 }
82 }
83
00be9182 84 public function preProcess() {
926dcf00
KJ
85 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
86 $this->assign('contactId', $this->_contactId);
87
559865a0
KJ
88 $displayName = CRM_Contact_BAO_Contact::displayName($this->_contactId);
89 $this->assign('displayName', $displayName);
90
926dcf00
KJ
91 // check logged in url permission
92 CRM_Contact_Page_View::checkUserPermission($this);
926dcf00
KJ
93 }
94
95 /**
dc195289 96 * the main function that is called
926dcf00
KJ
97 * when the page loads, it decides the which action has
98 * to be taken for the page.
99 *
76e7a76c 100 * @return null
926dcf00 101 */
00be9182 102 public function run() {
926dcf00
KJ
103 $this->preProcess();
104 $this->browse();
105 return parent::run();
106 }
96025800 107
232624b1 108}