Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-07-07-15-48-59
[civicrm-core.git] / CRM / Report / Form / Contact / LoggingDetail.php
CommitLineData
6a488035 1<?php
6a488035
TO
2
3/*
4 +--------------------------------------------------------------------+
06b69b18 5 | CiviCRM version 4.5 |
6a488035 6 +--------------------------------------------------------------------+
06b69b18 7 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36class CRM_Report_Form_Contact_LoggingDetail extends CRM_Logging_ReportDetail {
74cf4551
EM
37 /**
38 *
39 */
6a488035
TO
40 function __construct() {
41 $logging = new CRM_Logging_Schema;
42 $this->tables[] = 'civicrm_contact';
43 $this->tables = array_merge($this->tables, array_keys($logging->customDataLogTables()));
44 $this->tables[] = 'civicrm_email';
45 $this->tables[] = 'civicrm_phone';
46 $this->tables[] = 'civicrm_im';
47 $this->tables[] = 'civicrm_openid';
48 $this->tables[] = 'civicrm_website';
49 $this->tables[] = 'civicrm_address';
50 $this->tables[] = 'civicrm_note';
51 $this->tables[] = 'civicrm_relationship';
52 $this->tables[] = 'civicrm_activity';
53 $this->tables[] = 'civicrm_case';
54
6b4b11c4
DS
55 // allow tables to be extended by report hook query objects
56 CRM_Report_BAO_Hook::singleton()->alterLogTables($this, $this->tables);
57
6a488035
TO
58 $this->detail = 'logging/contact/detail';
59 $this->summary = 'logging/contact/summary';
60
61 parent::__construct();
62 }
63
64 function buildQuickForm() {
65 $layout = CRM_Utils_Request::retrieve('layout', 'String', $this);
66 $this->assign('layout', $layout);
67
68 parent::buildQuickForm();
69
70 if ($this->cid) {
71 // link back to contact summary
72 $this->assign('backURL', CRM_Utils_System::url('civicrm/contact/view', "reset=1&selectedChild=log&cid={$this->cid}", FALSE, NULL, FALSE));
73 $this->assign('revertURL', self::$_template->get_template_vars('revertURL') . "&cid={$this->cid}");
74 }
75 else {
76 // link back to summary report
77 $this->assign('backURL', CRM_Report_Utils_Report::getNextUrl('logging/contact/summary', 'reset=1', FALSE, TRUE));
78 }
79 }
6a488035
TO
80}
81