3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
35 class CRM_Report_Form_Contact_LoggingSummary
extends CRM_Logging_ReportSummary
{
38 public function __construct() {
39 parent
::__construct();
42 foreach (array_keys($this->_logTables
) as $table) {
43 $type = $this->getLogType($table);
44 $logTypes[$type] = $type;
48 $this->_columns
= array(
49 'log_civicrm_entity' => array(
50 'dao' => 'CRM_Contact_DAO_Contact',
51 'alias' => 'entity_log',
57 'log_action' => array(
59 'title' => ts('Action'),
63 'title' => ts('Log Type'),
65 'log_user_id' => array(
72 'type' => CRM_Utils_Type
::T_TIME
,
73 'title' => ts('When'),
75 'altered_contact' => array(
77 'name' => 'display_name',
78 'title' => ts('Altered Contact'),
79 'alias' => 'modified_contact_civireport',
81 'altered_contact_id' => array(
85 'alias' => 'modified_contact_civireport',
87 'log_conn_id' => array(
91 'is_deleted' => array(
94 'alias' => 'modified_contact_civireport',
99 'title' => ts('When'),
100 'operatorType' => CRM_Report_Form
::OP_DATE
,
101 'type' => CRM_Utils_Type
::T_DATE
,
103 'altered_contact' => array(
104 'name' => 'display_name',
105 'title' => ts('Altered Contact'),
106 'type' => CRM_Utils_Type
::T_STRING
,
107 'alias' => 'modified_contact_civireport',
109 'altered_contact_id' => array(
111 'type' => CRM_Utils_Type
::T_INT
,
112 'alias' => 'modified_contact_civireport',
113 'no_display' => TRUE,
116 'operatorType' => CRM_Report_Form
::OP_MULTISELECT
,
117 'options' => $logTypes,
118 'title' => ts('Log Type'),
119 'type' => CRM_Utils_Type
::T_STRING
,
121 'log_type_table' => array(
122 'name' => 'log_type',
123 'title' => ts('Log Type Table'),
124 'type' => CRM_Utils_Type
::T_STRING
,
126 'log_action' => array(
127 'operatorType' => CRM_Report_Form
::OP_MULTISELECT
,
128 'options' => array('Insert' => ts('Insert'), 'Update' => ts('Update'), 'Delete' => ts('Delete')),
129 'title' => ts('Action'),
130 'type' => CRM_Utils_Type
::T_STRING
,
133 'no_display' => TRUE,
134 'type' => CRM_Utils_Type
::T_INT
,
138 'altered_by_contact' => array(
139 'dao' => 'CRM_Contact_DAO_Contact',
140 'alias' => 'altered_by_contact',
142 'display_name' => array(
144 'name' => 'display_name',
145 'title' => ts('Altered By'),
149 'display_name' => array(
150 'name' => 'display_name',
151 'title' => ts('Altered By'),
152 'type' => CRM_Utils_Type
::T_STRING
,
162 public function alterDisplay(&$rows) {
163 // cache for id → is_deleted mapping
164 $isDeleted = array();
167 foreach ($rows as $key => &$row) {
168 if (!isset($isDeleted[$row['log_civicrm_entity_altered_contact_id']])) {
169 $isDeleted[$row['log_civicrm_entity_altered_contact_id']] = CRM_Core_DAO
::getFieldValue('CRM_Contact_DAO_Contact',
170 $row['log_civicrm_entity_altered_contact_id'], 'is_deleted') !== '0';
173 if (!empty($row['log_civicrm_entity_altered_contact']) &&
174 !$isDeleted[$row['log_civicrm_entity_altered_contact_id']]
176 $row['log_civicrm_entity_altered_contact_link'] = CRM_Utils_System
::url('civicrm/contact/view',
177 'reset=1&cid=' . $row['log_civicrm_entity_altered_contact_id']);
178 $row['log_civicrm_entity_altered_contact_hover'] = ts("Go to contact summary");
179 $entity = $this->getEntityValue($row['log_civicrm_entity_id'], $row['log_civicrm_entity_log_type'], $row['log_civicrm_entity_log_date']);
181 $row['log_civicrm_entity_altered_contact'] = $row['log_civicrm_entity_altered_contact'] . " [{$entity}]";
184 $row['altered_by_contact_display_name_link'] = CRM_Utils_System
::url('civicrm/contact/view', 'reset=1&cid=' . $row['log_civicrm_entity_log_user_id']);
185 $row['altered_by_contact_display_name_hover'] = ts("Go to contact summary");
187 if ($row['log_civicrm_entity_is_deleted'] and 'Update' == CRM_Utils_Array
::value('log_civicrm_entity_log_action', $row)) {
188 $row['log_civicrm_entity_log_action'] = ts('Delete (to trash)');
191 if ('Contact' == CRM_Utils_Array
::value('log_type', $this->_logTables
[$row['log_civicrm_entity_log_type']]) &&
192 CRM_Utils_Array
::value('log_civicrm_entity_log_action', $row) == 'Insert'
194 $row['log_civicrm_entity_log_action'] = ts('Update');
197 if ($newAction = $this->getEntityAction($row['log_civicrm_entity_id'],
198 $row['log_civicrm_entity_log_conn_id'],
199 $row['log_civicrm_entity_log_type'],
200 CRM_Utils_Array
::value('log_civicrm_entity_log_action', $row))
202 $row['log_civicrm_entity_log_action'] = $newAction;
205 $row['log_civicrm_entity_log_type'] = $this->getLogType($row['log_civicrm_entity_log_type']);
207 $date = CRM_Utils_Date
::isoToMysql($row['log_civicrm_entity_log_date']);
209 if ('Update' == CRM_Utils_Array
::value('log_civicrm_entity_log_action', $row)) {
210 $q = "reset=1&log_conn_id={$row['log_civicrm_entity_log_conn_id']}&log_date=" . $date;
212 $q .= '&cid=' . $this->cid
;
214 $q .= (!empty($row['log_civicrm_entity_altered_contact'])) ?
'&alteredName=' . $row['log_civicrm_entity_altered_contact'] : '';
215 $q .= (!empty($row['altered_by_contact_display_name'])) ?
'&alteredBy=' . $row['altered_by_contact_display_name'] : '';
216 $q .= (!empty($row['log_civicrm_entity_log_user_id'])) ?
'&alteredById=' . $row['log_civicrm_entity_log_user_id'] : '';
218 $url1 = CRM_Report_Utils_Report
::getNextUrl('logging/contact/detail', "{$q}&snippet=4§ion=2&layout=overlay", FALSE, TRUE);
219 $url2 = CRM_Report_Utils_Report
::getNextUrl('logging/contact/detail', "{$q}§ion=2", FALSE, TRUE);
220 $row['log_civicrm_entity_log_action'] = "<a href='{$url1}' class='crm-summary-link'><div class='icon ui-icon-zoomin'></div></a> <a title='View details for this update' href='{$url2}'>" . ts('Update') . '</a>';
224 $row['log_civicrm_entity_log_type'] . '_' .
225 $row['log_civicrm_entity_log_conn_id'] . '_' .
226 $row['log_civicrm_entity_log_user_id'] . '_' .
227 $row['log_civicrm_entity_altered_contact_id'];
228 $newRows[$key] = $row;
230 unset($row['log_civicrm_entity_log_user_id']);
231 unset($row['log_civicrm_entity_log_conn_id']);
239 * @param null $logTable
241 public function from($logTable = NULL) {
242 static $entity = NULL;
247 $detail = $this->_logTables
[$entity];
248 $tableName = CRM_Utils_Array
::value('table_name', $detail, $entity);
249 $clause = CRM_Utils_Array
::value('entity_table', $detail);
250 $clause = $clause ?
"AND entity_log_civireport.entity_table = 'civicrm_contact'" : NULL;
253 INNER JOIN civicrm_contact modified_contact_civireport
254 ON (entity_log_civireport.{$detail['fk']} = modified_contact_civireport.id {$clause})";
256 if (!empty($detail['joins'])) {
257 $clause = CRM_Utils_Array
::value('entity_table', $detail);
258 $clause = $clause ?
"AND fk_table.entity_table = 'civicrm_contact'" : NULL;
260 INNER JOIN `{$this->loggingDB}`.{$detail['joins']['table']} fk_table ON {$detail['joins']['join']}
261 INNER JOIN civicrm_contact modified_contact_civireport
262 ON (fk_table.{$detail['fk']} = modified_contact_civireport.id {$clause})";
266 FROM `{$this->loggingDB}`.$tableName entity_log_civireport
268 LEFT JOIN civicrm_contact altered_by_contact_civireport
269 ON (entity_log_civireport.log_user_id = altered_by_contact_civireport.id)";