Merge pull request #22160 from colemanw/navigationPermission
[civicrm-core.git] / CRM / Core / DAO / Dashboard.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Core/Dashboard.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:9603ee2a3a27196ef1ec671bf758a783)
10 */
11
12 /**
13 * Database access object for the Dashboard entity.
14 */
15 class CRM_Core_DAO_Dashboard extends CRM_Core_DAO {
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '3.1';
18
19 /**
20 * Static instance to hold the table name.
21 *
22 * @var string
23 */
24 public static $_tableName = 'civicrm_dashboard';
25
26 /**
27 * Should CiviCRM log any modifications to this table in the civicrm_log table.
28 *
29 * @var bool
30 */
31 public static $_log = FALSE;
32
33 /**
34 * @var int
35 */
36 public $id;
37
38 /**
39 * Domain for dashboard
40 *
41 * @var int
42 */
43 public $domain_id;
44
45 /**
46 * Internal name of dashlet.
47 *
48 * @var string
49 */
50 public $name;
51
52 /**
53 * dashlet title
54 *
55 * @var string
56 */
57 public $label;
58
59 /**
60 * url in case of external dashlet
61 *
62 * @var string
63 */
64 public $url;
65
66 /**
67 * Permission for the dashlet
68 *
69 * @var string
70 */
71 public $permission;
72
73 /**
74 * Permission Operator
75 *
76 * @var string
77 */
78 public $permission_operator;
79
80 /**
81 * fullscreen url for dashlet
82 *
83 * @var string
84 */
85 public $fullscreen_url;
86
87 /**
88 * Is this dashlet active?
89 *
90 * @var bool
91 */
92 public $is_active;
93
94 /**
95 * Is this dashlet reserved?
96 *
97 * @var bool
98 */
99 public $is_reserved;
100
101 /**
102 * Number of minutes to cache dashlet content in browser localStorage.
103 *
104 * @var int
105 */
106 public $cache_minutes;
107
108 /**
109 * Element name of angular directive to invoke (lowercase hyphenated format)
110 *
111 * @var string
112 */
113 public $directive;
114
115 /**
116 * Class constructor.
117 */
118 public function __construct() {
119 $this->__table = 'civicrm_dashboard';
120 parent::__construct();
121 }
122
123 /**
124 * Returns localized title of this entity.
125 *
126 * @param bool $plural
127 * Whether to return the plural version of the title.
128 */
129 public static function getEntityTitle($plural = FALSE) {
130 return $plural ? ts('Dashboards') : ts('Dashboard');
131 }
132
133 /**
134 * Returns foreign keys and entity references.
135 *
136 * @return array
137 * [CRM_Core_Reference_Interface]
138 */
139 public static function getReferenceColumns() {
140 if (!isset(Civi::$statics[__CLASS__]['links'])) {
141 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
142 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'domain_id', 'civicrm_domain', 'id');
143 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
144 }
145 return Civi::$statics[__CLASS__]['links'];
146 }
147
148 /**
149 * Returns all the column names of this table
150 *
151 * @return array
152 */
153 public static function &fields() {
154 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
155 Civi::$statics[__CLASS__]['fields'] = [
156 'id' => [
157 'name' => 'id',
158 'type' => CRM_Utils_Type::T_INT,
159 'title' => ts('DashletID'),
160 'required' => TRUE,
161 'where' => 'civicrm_dashboard.id',
162 'table_name' => 'civicrm_dashboard',
163 'entity' => 'Dashboard',
164 'bao' => 'CRM_Core_BAO_Dashboard',
165 'localizable' => 0,
166 'html' => [
167 'type' => 'Number',
168 ],
169 'readonly' => TRUE,
170 'add' => '3.1',
171 ],
172 'domain_id' => [
173 'name' => 'domain_id',
174 'type' => CRM_Utils_Type::T_INT,
175 'title' => ts('Domain ID'),
176 'description' => ts('Domain for dashboard'),
177 'required' => TRUE,
178 'where' => 'civicrm_dashboard.domain_id',
179 'table_name' => 'civicrm_dashboard',
180 'entity' => 'Dashboard',
181 'bao' => 'CRM_Core_BAO_Dashboard',
182 'localizable' => 0,
183 'FKClassName' => 'CRM_Core_DAO_Domain',
184 'html' => [
185 'label' => ts("Domain"),
186 ],
187 'pseudoconstant' => [
188 'table' => 'civicrm_domain',
189 'keyColumn' => 'id',
190 'labelColumn' => 'name',
191 ],
192 'add' => '3.1',
193 ],
194 'name' => [
195 'name' => 'name',
196 'type' => CRM_Utils_Type::T_STRING,
197 'title' => ts('Dashlet Name'),
198 'description' => ts('Internal name of dashlet.'),
199 'maxlength' => 64,
200 'size' => CRM_Utils_Type::BIG,
201 'where' => 'civicrm_dashboard.name',
202 'table_name' => 'civicrm_dashboard',
203 'entity' => 'Dashboard',
204 'bao' => 'CRM_Core_BAO_Dashboard',
205 'localizable' => 0,
206 'add' => '4.4',
207 ],
208 'label' => [
209 'name' => 'label',
210 'type' => CRM_Utils_Type::T_STRING,
211 'title' => ts('Dashlet Title'),
212 'description' => ts('dashlet title'),
213 'maxlength' => 255,
214 'size' => CRM_Utils_Type::HUGE,
215 'where' => 'civicrm_dashboard.label',
216 'table_name' => 'civicrm_dashboard',
217 'entity' => 'Dashboard',
218 'bao' => 'CRM_Core_BAO_Dashboard',
219 'localizable' => 1,
220 'add' => '3.1',
221 ],
222 'url' => [
223 'name' => 'url',
224 'type' => CRM_Utils_Type::T_STRING,
225 'title' => ts('Dashlet URL'),
226 'description' => ts('url in case of external dashlet'),
227 'maxlength' => 255,
228 'size' => CRM_Utils_Type::HUGE,
229 'where' => 'civicrm_dashboard.url',
230 'table_name' => 'civicrm_dashboard',
231 'entity' => 'Dashboard',
232 'bao' => 'CRM_Core_BAO_Dashboard',
233 'localizable' => 0,
234 'add' => '3.1',
235 ],
236 'permission' => [
237 'name' => 'permission',
238 'type' => CRM_Utils_Type::T_STRING,
239 'title' => ts('Dashlet Permission'),
240 'description' => ts('Permission for the dashlet'),
241 'maxlength' => 255,
242 'size' => CRM_Utils_Type::HUGE,
243 'where' => 'civicrm_dashboard.permission',
244 'table_name' => 'civicrm_dashboard',
245 'entity' => 'Dashboard',
246 'bao' => 'CRM_Core_BAO_Dashboard',
247 'localizable' => 0,
248 'serialize' => self::SERIALIZE_COMMA,
249 'add' => '3.1',
250 ],
251 'permission_operator' => [
252 'name' => 'permission_operator',
253 'type' => CRM_Utils_Type::T_STRING,
254 'title' => ts('Dashlet Permission Operator'),
255 'description' => ts('Permission Operator'),
256 'maxlength' => 3,
257 'size' => CRM_Utils_Type::FOUR,
258 'where' => 'civicrm_dashboard.permission_operator',
259 'table_name' => 'civicrm_dashboard',
260 'entity' => 'Dashboard',
261 'bao' => 'CRM_Core_BAO_Dashboard',
262 'localizable' => 0,
263 'pseudoconstant' => [
264 'callback' => 'CRM_Core_SelectValues::andOr',
265 ],
266 'add' => '3.1',
267 ],
268 'fullscreen_url' => [
269 'name' => 'fullscreen_url',
270 'type' => CRM_Utils_Type::T_STRING,
271 'title' => ts('Fullscreen URL'),
272 'description' => ts('fullscreen url for dashlet'),
273 'maxlength' => 255,
274 'size' => CRM_Utils_Type::HUGE,
275 'where' => 'civicrm_dashboard.fullscreen_url',
276 'table_name' => 'civicrm_dashboard',
277 'entity' => 'Dashboard',
278 'bao' => 'CRM_Core_BAO_Dashboard',
279 'localizable' => 0,
280 'add' => '3.4',
281 ],
282 'is_active' => [
283 'name' => 'is_active',
284 'type' => CRM_Utils_Type::T_BOOLEAN,
285 'title' => ts('Is Dashlet Active?'),
286 'description' => ts('Is this dashlet active?'),
287 'where' => 'civicrm_dashboard.is_active',
288 'default' => '0',
289 'table_name' => 'civicrm_dashboard',
290 'entity' => 'Dashboard',
291 'bao' => 'CRM_Core_BAO_Dashboard',
292 'localizable' => 0,
293 'add' => '3.1',
294 ],
295 'is_reserved' => [
296 'name' => 'is_reserved',
297 'type' => CRM_Utils_Type::T_BOOLEAN,
298 'title' => ts('Is Dashlet Reserved?'),
299 'description' => ts('Is this dashlet reserved?'),
300 'where' => 'civicrm_dashboard.is_reserved',
301 'default' => '0',
302 'table_name' => 'civicrm_dashboard',
303 'entity' => 'Dashboard',
304 'bao' => 'CRM_Core_BAO_Dashboard',
305 'localizable' => 0,
306 'add' => '3.1',
307 ],
308 'cache_minutes' => [
309 'name' => 'cache_minutes',
310 'type' => CRM_Utils_Type::T_INT,
311 'title' => ts('Cache Minutes'),
312 'description' => ts('Number of minutes to cache dashlet content in browser localStorage.'),
313 'required' => TRUE,
314 'where' => 'civicrm_dashboard.cache_minutes',
315 'default' => '60',
316 'table_name' => 'civicrm_dashboard',
317 'entity' => 'Dashboard',
318 'bao' => 'CRM_Core_BAO_Dashboard',
319 'localizable' => 0,
320 'add' => '4.7',
321 ],
322 'directive' => [
323 'name' => 'directive',
324 'type' => CRM_Utils_Type::T_STRING,
325 'title' => ts('Angular directive'),
326 'description' => ts('Element name of angular directive to invoke (lowercase hyphenated format)'),
327 'maxlength' => 255,
328 'size' => CRM_Utils_Type::HUGE,
329 'where' => 'civicrm_dashboard.directive',
330 'table_name' => 'civicrm_dashboard',
331 'entity' => 'Dashboard',
332 'bao' => 'CRM_Core_BAO_Dashboard',
333 'localizable' => 0,
334 'add' => '5.33',
335 ],
336 ];
337 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
338 }
339 return Civi::$statics[__CLASS__]['fields'];
340 }
341
342 /**
343 * Return a mapping from field-name to the corresponding key (as used in fields()).
344 *
345 * @return array
346 * Array(string $name => string $uniqueName).
347 */
348 public static function &fieldKeys() {
349 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
350 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
351 }
352 return Civi::$statics[__CLASS__]['fieldKeys'];
353 }
354
355 /**
356 * Returns the names of this table
357 *
358 * @return string
359 */
360 public static function getTableName() {
361 return CRM_Core_DAO::getLocaleTableName(self::$_tableName);
362 }
363
364 /**
365 * Returns if this table needs to be logged
366 *
367 * @return bool
368 */
369 public function getLog() {
370 return self::$_log;
371 }
372
373 /**
374 * Returns the list of fields that can be imported
375 *
376 * @param bool $prefix
377 *
378 * @return array
379 */
380 public static function &import($prefix = FALSE) {
381 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'dashboard', $prefix, []);
382 return $r;
383 }
384
385 /**
386 * Returns the list of fields that can be exported
387 *
388 * @param bool $prefix
389 *
390 * @return array
391 */
392 public static function &export($prefix = FALSE) {
393 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'dashboard', $prefix, []);
394 return $r;
395 }
396
397 /**
398 * Returns the list of indices
399 *
400 * @param bool $localize
401 *
402 * @return array
403 */
404 public static function indices($localize = TRUE) {
405 $indices = [];
406 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
407 }
408
409 }