Merge pull request #13322 from JMAConsulting/dev-report-5
[civicrm-core.git] / CRM / Contact / Page / View / UserDashBoard / GroupContact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
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 NULL, NULL, TRUE
45 );
46
47 $in = CRM_Contact_BAO_GroupContact::getContactGroup(
48 $this->_contactId,
49 'Added',
50 NULL, FALSE, TRUE,
51 $this->_onlyPublicGroups,
52 NULL, NULL, TRUE
53 );
54
55 $pending = CRM_Contact_BAO_GroupContact::getContactGroup(
56 $this->_contactId,
57 'Pending',
58 NULL, FALSE, TRUE,
59 $this->_onlyPublicGroups,
60 NULL, NULL, TRUE
61 );
62
63 $out = CRM_Contact_BAO_GroupContact::getContactGroup(
64 $this->_contactId,
65 'Removed',
66 NULL, FALSE, TRUE,
67 $this->_onlyPublicGroups,
68 NULL, NULL, TRUE
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 *
132 * It decides the which action has to be taken for the page.
133 */
134 public function run() {
135 $this->edit();
136 $this->browse();
137 }
138
139 }