Merge pull request #2289 from eileenmcnaughton/CRM-13918
[civicrm-core.git] / CRM / Report / Form / Contact / LoggingDetail.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_LoggingDetail extends CRM_Logging_ReportDetail {
37 function __construct() {
38 $logging = new CRM_Logging_Schema;
39 $this->tables[] = 'civicrm_contact';
40 $this->tables = array_merge($this->tables, array_keys($logging->customDataLogTables()));
41 $this->tables[] = 'civicrm_email';
42 $this->tables[] = 'civicrm_phone';
43 $this->tables[] = 'civicrm_im';
44 $this->tables[] = 'civicrm_openid';
45 $this->tables[] = 'civicrm_website';
46 $this->tables[] = 'civicrm_address';
47 $this->tables[] = 'civicrm_note';
48 $this->tables[] = 'civicrm_relationship';
49 $this->tables[] = 'civicrm_activity';
50 $this->tables[] = 'civicrm_case';
51
6b4b11c4
DS
52 // allow tables to be extended by report hook query objects
53 CRM_Report_BAO_Hook::singleton()->alterLogTables($this, $this->tables);
54
6a488035
TO
55 $this->detail = 'logging/contact/detail';
56 $this->summary = 'logging/contact/summary';
57
58 parent::__construct();
59 }
60
61 function buildQuickForm() {
62 $layout = CRM_Utils_Request::retrieve('layout', 'String', $this);
63 $this->assign('layout', $layout);
64
65 parent::buildQuickForm();
66
67 if ($this->cid) {
68 // link back to contact summary
69 $this->assign('backURL', CRM_Utils_System::url('civicrm/contact/view', "reset=1&selectedChild=log&cid={$this->cid}", FALSE, NULL, FALSE));
70 $this->assign('revertURL', self::$_template->get_template_vars('revertURL') . "&cid={$this->cid}");
71 }
72 else {
73 // link back to summary report
74 $this->assign('backURL', CRM_Report_Utils_Report::getNextUrl('logging/contact/summary', 'reset=1', FALSE, TRUE));
75 }
76 }
6a488035
TO
77}
78