CRM add missing comment blocks
[civicrm-core.git] / CRM / Activity / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
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 */
35
36/**
37 * Class for activity task actions
38 *
39 */
40class 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 * @access public
84 */
85 function preProcess() {
86 self::preProcessCommon($this);
87 }
88
ffd93213
EM
89 /**
90 * @param $form
91 * @param bool $useTable
92 */
6a488035
TO
93 static function preProcessCommon(&$form, $useTable = FALSE) {
94 $form->_activityHolderIds = array();
95
96 $values = $form->controller->exportValues($form->get('searchFormName'));
97
98 $form->_task = $values['task'];
99 $activityTasks = CRM_Activity_Task::tasks();
100 $form->assign('taskName', $activityTasks[$form->_task]);
101
102 $ids = array();
103 if ($values['radio_ts'] == 'ts_sel') {
104 foreach ($values as $name => $value) {
105 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
106 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
107 }
108 }
109 }
110 else {
111 $queryParams = $form->get('queryParams');
112 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
113 CRM_Contact_BAO_Query::MODE_ACTIVITY
114 );
115 $query->_distinctComponentClause = '( civicrm_activity.id )';
116 $query->_groupByComponentClause = " GROUP BY civicrm_activity.id ";
117 $result = $query->searchQuery(0, 0, NULL);
118
119 while ($result->fetch()) {
120 if(!empty($result->activity_id)) {
121 $ids[] = $result->activity_id;
122 }
123 }
124 }
125
126 if (!empty($ids)) {
127 $form->_componentClause = ' civicrm_activity.id IN ( ' . implode(',', $ids) . ' ) ';
128 $form->assign('totalSelectedActivities', count($ids));
129 }
130
131 $form->_activityHolderIds = $form->_componentIds = $ids;
132
133 //set the context for redirection for any task actions
134 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
135 $urlParams = 'force=1';
136 if (CRM_Utils_Rule::qfKey($qfKey)) {
137 $urlParams .= "&qfKey=$qfKey";
138 }
139
140 $session = CRM_Core_Session::singleton();
141 $searchFormName = strtolower($form->get('searchFormName'));
142 if ($searchFormName == 'search') {
143 $session->replaceUserContext(CRM_Utils_System::url('civicrm/activity/search', $urlParams));
144 }
145 else {
146 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
147 $urlParams
148 ));
149 }
150 }
151
152 /**
153 * Given the membership id, compute the contact id
154 * since its used for things like send email
155 */
156 public function setContactIDs() {
157 $IDs = implode(',', $this->_activityHolderIds);
1adb1bc9 158
c1a315f4 159 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
1adb1bc9 160 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
6a488035 161 $query = "
1adb1bc9 162SELECT contact_id
163FROM civicrm_activity_contact
164WHERE activity_id IN ( $IDs ) AND
165 record_type_id = {$sourceID}";
166
6a488035
TO
167 $dao = CRM_Core_DAO::executeQuery($query);
168 while ($dao->fetch()) {
1adb1bc9 169 $contactIDs[] = $dao->contact_id;
6a488035
TO
170 }
171 $this->_contactIds = $contactIDs;
172 }
173
174 /**
175 * simple shell that derived classes can call to add buttons to
176 * the form with a customized title for the main Submit
177 *
178 * @param string $title title of the main button
fd31fa4c
EM
179 * @param string $nextType
180 * @param string $backType
181 * @param bool $submitOnce
182 *
183 * @internal param string $type button type for the form after processing
6a488035
TO
184 *
185 * @return void
186 * @access public
187 */
188 function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
189 $this->addButtons(array(
190 array(
191 'type' => $nextType,
192 'name' => $title,
193 'isDefault' => TRUE,
194 ),
195 array(
196 'type' => $backType,
197 'name' => ts('Cancel'),
198 ),
199 )
200 );
201 }
202}
203