Merge pull request #17953 from civicrm/5.28
[civicrm-core.git] / Civi / Api4 / Entity.php
... / ...
CommitLineData
1<?php
2
3/*
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC. All rights reserved. |
6 | |
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
10 +--------------------------------------------------------------------+
11 */
12
13/**
14 *
15 * @package CRM
16 * @copyright CiviCRM LLC https://civicrm.org/licensing
17 */
18
19
20namespace Civi\Api4;
21
22/**
23 * Retrieves information about all Api4 entities.
24 *
25 * @see \Civi\Api4\Generic\AbstractEntity
26 *
27 * @package Civi\Api4
28 */
29class Entity extends Generic\AbstractEntity {
30
31 /**
32 * @param bool $checkPermissions
33 * @return Action\Entity\Get
34 */
35 public static function get($checkPermissions = TRUE) {
36 return (new Action\Entity\Get('Entity', __FUNCTION__))
37 ->setCheckPermissions($checkPermissions);
38 }
39
40 /**
41 * @param bool $checkPermissions
42 * @return Generic\BasicGetFieldsAction
43 */
44 public static function getFields($checkPermissions = TRUE) {
45 return (new Generic\BasicGetFieldsAction('Entity', __FUNCTION__, function() {
46 return [
47 [
48 'name' => 'name',
49 'description' => 'Entity name',
50 ],
51 [
52 'name' => 'title',
53 'description' => 'Localized title',
54 ],
55 [
56 'name' => 'type',
57 'description' => 'Base class for this entity',
58 'options' => ['DAOEntity' => 'DAOEntity', 'BasicEntity' => 'BasicEntity', 'BridgeEntity' => 'BridgeEntity', 'AbstractEntity' => 'AbstractEntity'],
59 ],
60 [
61 'name' => 'description',
62 'description' => 'Description from docblock',
63 ],
64 [
65 'name' => 'comment',
66 'description' => 'Comments from docblock',
67 ],
68 [
69 'name' => 'icon',
70 'description' => 'crm-i icon class associated with this entity',
71 ],
72 [
73 'name' => 'dao',
74 'description' => 'Class name for dao-based entities',
75 ],
76 [
77 'name' => 'see',
78 'data_type' => 'Array',
79 'description' => 'Any @see annotations from docblock',
80 ],
81 ];
82 }))->setCheckPermissions($checkPermissions);
83 }
84
85 /**
86 * @param bool $checkPermissions
87 * @return Action\Entity\GetLinks
88 */
89 public static function getLinks($checkPermissions = TRUE) {
90 return (new Action\Entity\GetLinks('Entity', __FUNCTION__))
91 ->setCheckPermissions($checkPermissions);
92 }
93
94 /**
95 * @return array
96 */
97 public static function permissions() {
98 return [
99 'default' => ['access CiviCRM'],
100 ];
101 }
102
103}