Merge pull request #2350 from eileenmcnaughton/CRM-14012
[civicrm-core.git] / CRM / Report / Form / Contact / Log.php
CommitLineData
6a488035 1<?php
6a488035
TO
2
3/*
4 +--------------------------------------------------------------------+
232624b1 5 | CiviCRM version 4.4 |
6a488035
TO
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2013 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27*/
28
29/**
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2013
33 * $Id$
34 *
35 */
36class CRM_Report_Form_Contact_Log extends CRM_Report_Form {
37
38 protected $_summary = NULL;
39 function __construct() {
40
41 $this->activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, TRUE);
42 asort($this->activityTypes);
43
44 $this->_columns = array(
45 'civicrm_contact' =>
46 array(
47 'dao' => 'CRM_Contact_DAO_Contact',
48 'fields' =>
49 array(
50 'sort_name' =>
51 array('title' => ts('Modified By'),
52 'required' => TRUE,
53 ),
54 'id' =>
55 array(
56 'no_display' => TRUE,
57 'required' => TRUE,
58 ),
59 ),
60 'filters' =>
61 array(
62 'sort_name' =>
63 array('title' => ts('Modified By'),
64 'type' => CRM_Utils_Type::T_STRING,
65 ),
66 ),
67 'grouping' => 'contact-fields',
68 ),
69 'civicrm_contact_touched' =>
70 array(
71 'dao' => 'CRM_Contact_DAO_Contact',
72 'fields' =>
73 array(
74 'sort_name_touched' =>
75 array('title' => ts('Touched Contact'),
76 'name' => 'sort_name',
77 'required' => TRUE,
78 ),
79 'id' =>
80 array(
81 'no_display' => TRUE,
82 'required' => TRUE,
83 ),
84 ),
85 'filters' =>
86 array(
87 'sort_name_touched' =>
88 array('title' => ts('Touched Contact'),
89 'name' => 'sort_name',
90 'type' => CRM_Utils_Type::T_STRING,
91 ),
92 ),
93 'grouping' => 'contact-fields',
94 ),
95 'civicrm_activity' =>
96 array(
97 'dao' => 'CRM_Activity_DAO_Activity',
98 'fields' =>
99 array('id' => array('title' => ts('Activity ID'),
100 'no_display' => TRUE,
101 'required' => TRUE,
102 ),
103 'subject' => array('title' => ts('Touched Activity'),
104 'required' => TRUE,
105 ),
106 'activity_type_id' => array('title' => ts('Activity Type'),
107 'required' => TRUE,
108 ),
18133624
RN
109 ),
110 ),
111 'civicrm_activity_source' =>
112 array(
113 'dao' => 'CRM_Activity_DAO_ActivityContact',
114 'fields' =>
115 array(
116 'contact_id' =>
117 array(
6a488035
TO
118 'no_display' => TRUE,
119 'required' => TRUE,
120 ),
121 ),
122 ),
123 'civicrm_log' =>
124 array(
125 'dao' => 'CRM_Core_DAO_Log',
126 'fields' =>
127 array(
128 'modified_date' =>
129 array('title' => ts('Modified Date'),
130 'required' => TRUE,
131 ),
132 'data' =>
133 array('title' => ts('Description'),
134 ),
135 ),
136 'filters' =>
137 array(
138 'modified_date' =>
139 array('title' => ts('Modified Date'),
140 'operatorType' => CRM_Report_Form::OP_DATE,
141 'type' => CRM_Utils_Type::T_DATE,
142 'default' => 'this.week',
143 ),
144 ),
145 ),
146 );
147
148 parent::__construct();
149 }
150
151 function preProcess() {
152 parent::preProcess();
153 }
154
155 function select() {
156 $select = array();
157 $this->_columnHeaders = array();
158 foreach ($this->_columns as $tableName => $table) {
159 if (array_key_exists('fields', $table)) {
160 foreach ($table['fields'] as $fieldName => $field) {
161 if (CRM_Utils_Array::value('required', $field) ||
162 CRM_Utils_Array::value($fieldName, $this->_params['fields'])
163 ) {
164
165 $select[] = "{$field['dbAlias']} as {$tableName}_{$fieldName}";
166 $this->_columnHeaders["{$tableName}_{$fieldName}"]['type'] = CRM_Utils_Array::value('type', $field);
167 $this->_columnHeaders["{$tableName}_{$fieldName}"]['title'] = $field['title'];
168 }
169 }
170 }
171 }
172
173 $this->_select = "SELECT " . implode(', ', $select) . " ";
174 }
175
176 static function formRule($fields, $files, $self) {
177 $errors = $grouping = array();
178 return $errors;
179 }
180
181 function from() {
18133624
RN
182 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
183 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
6a488035
TO
184 $this->_from = "
185 FROM civicrm_log {$this->_aliases['civicrm_log']}
186 inner join civicrm_contact {$this->_aliases['civicrm_contact']} on {$this->_aliases['civicrm_log']}.modified_id = {$this->_aliases['civicrm_contact']}.id
187 left join civicrm_contact {$this->_aliases['civicrm_contact_touched']} on ({$this->_aliases['civicrm_log']}.entity_table='civicrm_contact' AND {$this->_aliases['civicrm_log']}.entity_id = {$this->_aliases['civicrm_contact_touched']}.id)
188 left join civicrm_activity {$this->_aliases['civicrm_activity']} on ({$this->_aliases['civicrm_log']}.entity_table='civicrm_activity' AND {$this->_aliases['civicrm_log']}.entity_id = {$this->_aliases['civicrm_activity']}.id)
18133624
RN
189 LEFT JOIN civicrm_activity_contact {$this->_aliases['civicrm_activity_source']} ON
190 {$this->_aliases['civicrm_activity']}.id = {$this->_aliases['civicrm_activity_source']}.activity_id AND
191 {$this->_aliases['civicrm_activity_source']}.record_type_id = {$sourceID}
6a488035
TO
192 ";
193 }
194
195 function where() {
196 $clauses = array();
197 $this->_having = '';
198 foreach ($this->_columns as $tableName => $table) {
199 if (array_key_exists('filters', $table)) {
200 foreach ($table['filters'] as $fieldName => $field) {
201 $clause = NULL;
202 if (CRM_Utils_Array::value('operatorType', $field) & CRM_Report_Form::OP_DATE) {
203 $relative = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params);
204 $from = CRM_Utils_Array::value("{$fieldName}_from", $this->_params);
205 $to = CRM_Utils_Array::value("{$fieldName}_to", $this->_params);
206
207 $clause = $this->dateClause($field['dbAlias'], $relative, $from, $to);
208 }
209 else {
210 $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params);
211 if ($op) {
212 $clause = $this->whereClause($field,
213 $op,
214 CRM_Utils_Array::value("{$fieldName}_value", $this->_params),
215 CRM_Utils_Array::value("{$fieldName}_min", $this->_params),
216 CRM_Utils_Array::value("{$fieldName}_max", $this->_params)
217 );
218 }
219 }
220
221 if (!empty($clause)) {
222 $clauses[] = $clause;
223 }
224 }
225 }
226 }
227
228 $clauses[] = "({$this->_aliases['civicrm_log']}.entity_table <> 'civicrm_domain')";
229 $this->_where = "WHERE " . implode(' AND ', $clauses);
230 }
231
232 function orderBy() {
233 $this->_orderBy = "
234ORDER BY {$this->_aliases['civicrm_log']}.modified_date DESC, {$this->_aliases['civicrm_contact']}.sort_name, {$this->_aliases['civicrm_contact_touched']}.sort_name
235";
236 }
237
238 function alterDisplay(&$rows) {
239 // custom code to alter rows
240 $entryFound = FALSE;
241 foreach ($rows as $rowNum => $row) {
242 // convert display name to links
243 if (array_key_exists('civicrm_contact_sort_name', $row) &&
244 array_key_exists('civicrm_contact_id', $row)
245 ) {
246 $url = CRM_Utils_System::url('civicrm/contact/view',
247 'reset=1&cid=' . $row['civicrm_contact_id'],
248 $this->_absoluteUrl
249 );
250 $rows[$rowNum]['civicrm_contact_sort_name_link'] = $url;
251 $rows[$rowNum]['civicrm_contact_sort_name_hover'] = ts("View Contact details for this contact.");
252 $entryFound = TRUE;
253 }
254
255 if (array_key_exists('civicrm_contact_touched_sort_name_touched', $row) &&
256 array_key_exists('civicrm_contact_touched_id', $row) &&
257 $row['civicrm_contact_touched_sort_name_touched'] !== ''
258 ) {
259 $url = CRM_Utils_System::url('civicrm/contact/view',
260 'reset=1&cid=' . $row['civicrm_contact_touched_id'],
261 $this->_absoluteUrl
262 );
263 $rows[$rowNum]['civicrm_contact_touched_sort_name_touched_link'] = $url;
264 $rows[$rowNum]['civicrm_contact_touched_sort_name_touched_hover'] = ts("View Contact details for this contact.");
265 $entryFound = TRUE;
266 }
267
268 if (array_key_exists('civicrm_activity_subject', $row) &&
269 array_key_exists('civicrm_activity_id', $row) &&
270 $row['civicrm_activity_subject'] !== ''
271 ) {
272 $url = CRM_Utils_System::url('civicrm/contact/view/activity',
273 'reset=1&action=view&id=' . $row['civicrm_activity_id'] . '&cid=' . $row['civicrm_activity_source_contact_id'] . '&atype=' . $row['civicrm_activity_activity_type_id'],
274 $this->_absoluteUrl
275 );
276 $rows[$rowNum]['civicrm_activity_subject_link'] = $url;
277 $rows[$rowNum]['civicrm_activity_subject_hover'] = ts("View Contact details for this contact.");
278 $entryFound = TRUE;
279 }
280
281 if (array_key_exists('civicrm_activity_activity_type_id', $row)) {
282 if ($value = $row['civicrm_activity_activity_type_id']) {
283 $rows[$rowNum]['civicrm_activity_activity_type_id'] = $this->activityTypes[$value];
284 }
285 $entryFound = TRUE;
286 }
287
288 // skip looking further in rows, if first row itself doesn't
289 // have the column we need
290 if (!$entryFound) {
291 break;
292 }
293 }
294 }
295}
296