Merge pull request #8808 from totten/master-cxn-welcome
[civicrm-core.git] / CRM / Report / Form / Contribute / LoggingDetail.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Report_Form_Contribute_LoggingDetail extends CRM_Logging_ReportDetail {
74cf4551 36 /**
74cf4551 37 */
00be9182 38 public function __construct() {
d5cc0fc2 39 $logging = new CRM_Logging_Schema();
6a488035 40 $this->tables[] = 'civicrm_contribution';
353ffa53 41 $this->tables = array_merge($this->tables, array_keys($logging->customDataLogTables()));
6a488035
TO
42
43 $this->detail = 'logging/contribute/detail';
44 $this->summary = 'logging/contribute/summary';
45
46 parent::__construct();
47 }
48
00be9182 49 public function buildQuickForm() {
6a488035
TO
50 parent::buildQuickForm();
51
52 // link back to summary report
53 $this->assign('backURL', CRM_Report_Utils_Report::getNextUrl('logging/contribute/summary', 'reset=1', FALSE, TRUE));
54 }
96025800 55
6a488035 56}