Merge pull request #17008 from ivan-compucorp/CPS-70-fix-radio-value
[civicrm-core.git] / CRM / Report / BAO / HookInterface.php
CommitLineData
c3e3dd65
DS
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
c3e3dd65 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
c3e3dd65 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
c3e3dd65
DS
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
c3e3dd65
DS
16 * $Id$
17 *
18 */
19
20/**
21 * Interface class for Report hook query objects
22 */
23class CRM_Report_BAO_HookInterface {
24
74cf4551
EM
25 /**
26 * @param $reportObj
27 * @param $logTables
28 *
29 * @return null
30 */
6b4b11c4 31 public function alterLogTables(&$reportObj, &$logTables) {
c3e3dd65
DS
32 return NULL;
33 }
74cf4551
EM
34
35 /**
36 * @param $reportObj
37 * @param $table
38 *
39 * @return array
95ea96be
EM
40 */
41 public function logDiffClause(&$reportObj, $table) {
be2fb01f 42 return [];
6b4b11c4 43 }
96025800 44
232624b1 45}