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