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