comment fixes
[civicrm-core.git] / CRM / Contact / Page / View / UserDashBoard / GroupContact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 */
33 class CRM_Contact_Page_View_UserDashBoard_GroupContact extends CRM_Contact_Page_View_UserDashBoard {
34
35 /**
36 * Called when action is browse.
37 */
38 public function browse() {
39 $count = CRM_Contact_BAO_GroupContact::getContactGroup(
40 $this->_contactId,
41 NULL,
42 NULL, TRUE, TRUE,
43 $this->_onlyPublicGroups
44 );
45
46 $in =& CRM_Contact_BAO_GroupContact::getContactGroup(
47 $this->_contactId,
48 'Added',
49 NULL, FALSE, TRUE,
50 $this->_onlyPublicGroups
51 );
52
53 $pending =& CRM_Contact_BAO_GroupContact::getContactGroup(
54 $this->_contactId,
55 'Pending',
56 NULL, FALSE, TRUE,
57 $this->_onlyPublicGroups
58 );
59
60 $out =& CRM_Contact_BAO_GroupContact::getContactGroup(
61 $this->_contactId,
62 'Removed',
63 NULL, FALSE, TRUE,
64 $this->_onlyPublicGroups
65 );
66
67 $this->assign('groupCount', $count);
68 $this->assign_by_ref('groupIn', $in);
69 $this->assign_by_ref('groupPending', $pending);
70 $this->assign_by_ref('groupOut', $out);
71 }
72
73 /**
74 * called when action is update.
75 *
76 * @param int $groupId
77 *
78 * @return null
79 */
80 public function edit($groupId = NULL) {
81 $this->assign('edit', $this->_edit);
82 if (!$this->_edit) {
83 return NULL;
84 }
85
86 $action = CRM_Utils_Request::retrieve('action', 'String',
87 CRM_Core_DAO::$_nullObject,
88 FALSE, 'browse'
89 );
90
91 if ($action == CRM_Core_Action::DELETE) {
92 $groupContactId = CRM_Utils_Request::retrieve('gcid', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
93 $status = CRM_Utils_Request::retrieve('st', 'String', CRM_Core_DAO::$_nullObject, TRUE);
94 if (is_numeric($groupContactId) && $status) {
95 CRM_Contact_Page_View_GroupContact::del($groupContactId, $status, $this->_contactId);
96 }
97
98 $url = CRM_Utils_System::url('civicrm/user', "reset=1&id={$this->_contactId}");
99 CRM_Utils_System::redirect($url);
100 }
101
102 $controller = new CRM_Core_Controller_Simple(
103 'CRM_Contact_Form_GroupContact',
104 ts("Contact's Groups"),
105 CRM_Core_Action::ADD,
106 FALSE, FALSE, TRUE, FALSE
107 );
108 $controller->setEmbedded(TRUE);
109
110 $session = CRM_Core_Session::singleton();
111 $session->pushUserContext(
112 CRM_Utils_System::url('civicrm/user', "reset=1&id={$this->_contactId}"),
113 FALSE
114 );
115
116 $controller->reset();
117 $controller->set('contactId', $this->_contactId);
118 $controller->set('groupId', $groupId);
119 $controller->set('context', 'user');
120 $controller->set('onlyPublicGroups', $this->_onlyPublicGroups);
121 $controller->process();
122 $controller->run();
123 }
124
125 /**
126 * The main function that is called when the page loads.
127 *
128 * It decides the which action has to be taken for the page.
129 */
130 public function run() {
131 $this->edit();
132 $this->browse();
133 }
134
135 }