commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Contact / Page / View / UserDashBoard / GroupContact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 * $Id$
33 *
34 */
35 class CRM_Contact_Page_View_UserDashBoard_GroupContact extends CRM_Contact_Page_View_UserDashBoard {
36
37 /**
38 * called when action is browse.
39 *
40 * @return void
41 */
42 public function browse() {
43 $count = CRM_Contact_BAO_GroupContact::getContactGroup(
44 $this->_contactId,
45 NULL,
46 NULL, TRUE, TRUE,
47 $this->_onlyPublicGroups
48 );
49
50 $in =& CRM_Contact_BAO_GroupContact::getContactGroup(
51 $this->_contactId,
52 'Added',
53 NULL, FALSE, TRUE,
54 $this->_onlyPublicGroups
55 );
56
57 $pending =& CRM_Contact_BAO_GroupContact::getContactGroup(
58 $this->_contactId,
59 'Pending',
60 NULL, FALSE, TRUE,
61 $this->_onlyPublicGroups
62 );
63
64 $out =& CRM_Contact_BAO_GroupContact::getContactGroup(
65 $this->_contactId,
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 /**
78 * called when action is update.
79 *
80 * @param int $groupId
81 *
82 * @return null
83 */
84 public function edit($groupId = NULL) {
85 $this->assign('edit', $this->_edit);
86 if (!$this->_edit) {
87 return NULL;
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) {
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);
98 if (is_numeric($groupContactId) && $status) {
99 CRM_Contact_Page_View_GroupContact::del($groupContactId, $status, $this->_contactId);
100 }
101
102 $url = CRM_Utils_System::url('civicrm/user', "reset=1&id={$this->_contactId}");
103 CRM_Utils_System::redirect($url);
104 }
105
106 $controller = new CRM_Core_Controller_Simple(
107 'CRM_Contact_Form_GroupContact',
108 ts("Contact's Groups"),
109 CRM_Core_Action::ADD,
110 FALSE, FALSE, TRUE, FALSE
111 );
112 $controller->setEmbedded(TRUE);
113
114 $session = CRM_Core_Session::singleton();
115 $session->pushUserContext(
116 CRM_Utils_System::url('civicrm/user', "reset=1&id={$this->_contactId}"),
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 /**
130 * the main function that is called when the page loads,
131 * it decides the which action has to be taken for the page.
132 *
133 * @return void
134 */
135 public function run() {
136 $this->edit();
137 $this->browse();
138 }
139
140 }