commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / CRM / Activity / Form / Task.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
36 /**
37 * Class for activity task actions
38 *
39 */
40 class CRM_Activity_Form_Task extends CRM_Core_Form {
41
42 /**
43 * The task being performed.
44 *
45 * @var int
46 */
47 protected $_task;
48
49 /**
50 * The additional clause that we restrict the search with.
51 *
52 * @var string
53 */
54 protected $_componentClause = NULL;
55
56 /**
57 * The array that holds all the component ids.
58 *
59 * @var array
60 */
61 protected $_componentIds;
62
63 /**
64 * The array that holds all the contact ids.
65 *
66 * @var array
67 */
68 public $_contactIds;
69
70 /**
71 * The array that holds all the member ids.
72 *
73 * @var array
74 */
75 public $_activityHolderIds;
76
77 /**
78 * Build all the data structures needed to build the form.
79 *
80 * @param
81 *
82 * @return void
83 */
84 public function preProcess() {
85 self::preProcessCommon($this);
86 }
87
88 /**
89 * @param CRM_Core_Form $form
90 * @param bool $useTable
91 */
92 public static function preProcessCommon(&$form, $useTable = FALSE) {
93 $form->_activityHolderIds = array();
94
95 $values = $form->controller->exportValues($form->get('searchFormName'));
96
97 $form->_task = $values['task'];
98 $activityTasks = CRM_Activity_Task::tasks();
99 $form->assign('taskName', $activityTasks[$form->_task]);
100
101 $ids = array();
102 if ($values['radio_ts'] == 'ts_sel') {
103 foreach ($values as $name => $value) {
104 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
105 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
106 }
107 }
108 }
109 else {
110 $queryParams = $form->get('queryParams');
111 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
112 CRM_Contact_BAO_Query::MODE_ACTIVITY
113 );
114 $query->_distinctComponentClause = '( civicrm_activity.id )';
115 $query->_groupByComponentClause = " GROUP BY civicrm_activity.id ";
116 $result = $query->searchQuery(0, 0, NULL);
117
118 while ($result->fetch()) {
119 if (!empty($result->activity_id)) {
120 $ids[] = $result->activity_id;
121 }
122 }
123 }
124
125 if (!empty($ids)) {
126 $form->_componentClause = ' civicrm_activity.id IN ( ' . implode(',', $ids) . ' ) ';
127 $form->assign('totalSelectedActivities', count($ids));
128 }
129
130 $form->_activityHolderIds = $form->_componentIds = $ids;
131
132 //set the context for redirection for any task actions
133 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
134 $urlParams = 'force=1';
135 if (CRM_Utils_Rule::qfKey($qfKey)) {
136 $urlParams .= "&qfKey=$qfKey";
137 }
138
139 $session = CRM_Core_Session::singleton();
140 $searchFormName = strtolower($form->get('searchFormName'));
141 if ($searchFormName == 'search') {
142 $session->replaceUserContext(CRM_Utils_System::url('civicrm/activity/search', $urlParams));
143 }
144 else {
145 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
146 $urlParams
147 ));
148 }
149 }
150
151 /**
152 * Given the membership id, compute the contact id
153 * since its used for things like send email
154 */
155 public function setContactIDs() {
156 $IDs = implode(',', $this->_activityHolderIds);
157
158 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
159 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
160 $query = "
161 SELECT contact_id
162 FROM civicrm_activity_contact
163 WHERE activity_id IN ( $IDs ) AND
164 record_type_id = {$sourceID}";
165
166 $dao = CRM_Core_DAO::executeQuery($query);
167 while ($dao->fetch()) {
168 $contactIDs[] = $dao->contact_id;
169 }
170 $this->_contactIds = $contactIDs;
171 }
172
173 /**
174 * Simple shell that derived classes can call to add buttons to
175 * the form with a customized title for the main Submit
176 *
177 * @param string $title
178 * Title of the main button.
179 * @param string $nextType
180 * Button type for the form after processing.
181 * @param string $backType
182 * @param bool $submitOnce
183 *
184 * @return void
185 */
186 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
187 $this->addButtons(array(
188 array(
189 'type' => $nextType,
190 'name' => $title,
191 'isDefault' => TRUE,
192 ),
193 array(
194 'type' => $backType,
195 'name' => ts('Cancel'),
196 ),
197 )
198 );
199 }
200
201 }