Merge pull request #8010 from mlutfy/master-crm17862
[civicrm-core.git] / CRM / Report / Info.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 * This class introduces component to the system and provides all the
30 * information about it. It needs to extend CRM_Core_Component_Info
31 * abstract class.
32 *
33 * @package CRM
fa938177 34 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
35 * $Id$
36 *
37 */
38class CRM_Report_Info extends CRM_Core_Component_Info {
39
e7c15cb6
CW
40 /**
41 * @inheritDoc
42 */
6a488035
TO
43 protected $keyword = 'report';
44
74cf4551 45 /**
e7c15cb6 46 * @inheritDoc
74cf4551
EM
47 * Provides base information about the component.
48 * Needs to be implemented in component's information
49 * class.
50 *
a6c01b45
CW
51 * @return array
52 * collection of required component settings
74cf4551
EM
53 */
54 /**
55 * @return array
56 */
6a488035
TO
57 public function getInfo() {
58 return array(
59 'name' => 'CiviReport',
60 'translatedName' => ts('CiviReport'),
61 'title' => 'CiviCRM Report Engine',
62 'search' => 0,
63 'showActivitiesInCore' => 1,
64 );
65 }
66
67
74cf4551 68 /**
e7c15cb6 69 * @inheritDoc
74cf4551
EM
70 * Provides permissions that are used by component.
71 * Needs to be implemented in component's information
72 * class.
73 *
74 * NOTE: if using conditionally permission return,
75 * implementation of $getAllUnconditionally is required.
76 *
77 * @param bool $getAllUnconditionally
221b21b4
AH
78 * @param bool $descriptions
79 * Whether to return permission descriptions
74cf4551 80 *
72b3a70c
CW
81 * @return array|null
82 * collection of permissions, null if none
74cf4551 83 */
221b21b4
AH
84 public function getPermissions($getAllUnconditionally = FALSE, $descriptions = FALSE) {
85 $permissions = array(
86 'access CiviReport' => array(
87 ts('access CiviReport'),
88 ts('View reports'),
89 ),
90 'access Report Criteria' => array(
91 ts('access Report Criteria'),
92 ts('Change report search criteria'),
93 ),
94 'administer reserved reports' => array(
95 ts('administer reserved reports'),
96 ts('Edit all reports that have been marked as reserved'),
97 ),
98 'administer Reports' => array(
99 ts('administer Reports'),
100 ts('Manage report templates'),
101 ),
02d451ab
EM
102 'view report sql' => array(
103 ts('view report sql'),
104 ts('View sql used in CiviReports'),
105 ),
221b21b4
AH
106 );
107
108 if (!$descriptions) {
109 foreach ($permissions as $name => $attr) {
110 $permissions[$name] = array_shift($attr);
111 }
112 }
113
114 return $permissions;
6a488035
TO
115 }
116
117
74cf4551 118 /**
e7c15cb6 119 * @inheritDoc
74cf4551
EM
120 * Provides information about user dashboard element
121 * offered by this component.
122 *
72b3a70c
CW
123 * @return array|null
124 * collection of required dashboard settings,
74cf4551 125 * null if no element offered
74cf4551
EM
126 */
127 /**
128 * @return array|null
129 */
6a488035
TO
130 public function getUserDashboardElement() {
131 // no dashboard element for this component
132 return NULL;
133 }
134
74cf4551
EM
135 /**
136 * Provides component's user dashboard page object.
137 *
72b3a70c
CW
138 * @return mixed
139 * component's User Dashboard applet object
74cf4551
EM
140 */
141 /**
142 * @return mixed
143 */
6a488035
TO
144 public function getUserDashboardObject() {
145 // no dashboard element for this component
146 return NULL;
147 }
148
74cf4551 149 /**
e7c15cb6 150 * @inheritDoc
74cf4551
EM
151 * Provides information about user dashboard element
152 * offered by this component.
153 *
72b3a70c
CW
154 * @return array|null
155 * collection of required dashboard settings,
74cf4551 156 * null if no element offered
74cf4551
EM
157 */
158 /**
159 * @return array|null
160 */
6a488035
TO
161 public function registerTab() {
162 // this component doesn't use contact record tabs
163 return NULL;
164 }
165
74cf4551 166 /**
e7c15cb6 167 * @inheritDoc
74cf4551
EM
168 * Provides information about advanced search pane
169 * offered by this component.
170 *
72b3a70c
CW
171 * @return array|null
172 * collection of required pane settings,
74cf4551 173 * null if no element offered
74cf4551
EM
174 */
175 /**
176 * @return array|null
177 */
6a488035
TO
178 public function registerAdvancedSearchPane() {
179 // this component doesn't use advanced search
180 return NULL;
181 }
182
74cf4551 183 /**
e7c15cb6 184 * @inheritDoc
74cf4551
EM
185 * Provides potential activity types that this
186 * component might want to register in activity history.
187 * Needs to be implemented in component's information
188 * class.
189 *
72b3a70c
CW
190 * @return array|null
191 * collection of activity types
74cf4551
EM
192 */
193 /**
194 * @return array|null
195 */
6a488035
TO
196 public function getActivityTypes() {
197 return NULL;
198 }
199
74cf4551 200 /**
fe482240 201 * add shortcut to Create New.
74cf4551
EM
202 * @param $shortCuts
203 */
84178120
TO
204 public function creatNewShortcut(&$shortCuts) {
205 }
96025800 206
6a488035 207}