Merge pull request #21882 from mariav0/patch-20
[civicrm-core.git] / Civi / Api4 / Entity.php
CommitLineData
19b53e5b 1<?php
380f3545
TO
2/*
3 +--------------------------------------------------------------------+
41498ac5 4 | Copyright CiviCRM LLC. All rights reserved. |
380f3545 5 | |
41498ac5
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 |
380f3545
TO
9 +--------------------------------------------------------------------+
10 */
19b53e5b
C
11namespace Civi\Api4;
12
13/**
14 * Retrieves information about all Api4 entities.
15 *
0493ec47
CW
16 * @see \Civi\Api4\Generic\AbstractEntity
17 *
aa998597 18 * @searchable none
d44cc3cb 19 * @since 5.19
19b53e5b
C
20 * @package Civi\Api4
21 */
22class Entity extends Generic\AbstractEntity {
23
24 /**
6764a9d3 25 * @param bool $checkPermissions
19b53e5b
C
26 * @return Action\Entity\Get
27 */
6764a9d3
CW
28 public static function get($checkPermissions = TRUE) {
29 return (new Action\Entity\Get('Entity', __FUNCTION__))
30 ->setCheckPermissions($checkPermissions);
19b53e5b
C
31 }
32
33 /**
6764a9d3
CW
34 * @param bool $checkPermissions
35 * @return Generic\BasicGetFieldsAction
19b53e5b 36 */
6764a9d3
CW
37 public static function getFields($checkPermissions = TRUE) {
38 return (new Generic\BasicGetFieldsAction('Entity', __FUNCTION__, function() {
19b53e5b 39 return [
f827fe49
CW
40 [
41 'name' => 'name',
42 'description' => 'Entity name',
43 ],
60f88aac
CW
44 [
45 'name' => 'title',
9813ae79
CW
46 'description' => 'Localized title (singular)',
47 ],
48 [
49 'name' => 'title_plural',
50 'description' => 'Localized title (plural)',
60f88aac 51 ],
90908aac
CW
52 [
53 'name' => 'type',
465bc32a 54 'data_type' => 'Array',
90908aac 55 'description' => 'Base class for this entity',
465bc32a
CW
56 'options' => [
57 'AbstractEntity' => 'AbstractEntity',
58 'DAOEntity' => 'DAOEntity',
7430e70d 59 'CustomValue' => 'CustomValue',
465bc32a
CW
60 'BasicEntity' => 'BasicEntity',
61 'EntityBridge' => 'EntityBridge',
62 'OptionList' => 'OptionList',
63 ],
90908aac 64 ],
f827fe49
CW
65 [
66 'name' => 'description',
67 'description' => 'Description from docblock',
68 ],
69 [
70 'name' => 'comment',
71 'description' => 'Comments from docblock',
72 ],
60f88aac
CW
73 [
74 'name' => 'icon',
75 'description' => 'crm-i icon class associated with this entity',
76 ],
77 [
78 'name' => 'dao',
79 'description' => 'Class name for dao-based entities',
80 ],
482a26e2 81 [
b675a457
CW
82 'name' => 'primary_key',
83 'type' => 'Array',
84 'description' => 'Name of unique identifier field(s) (e.g. [id])',
482a26e2 85 ],
8ab43c93 86 [
b441e024 87 'name' => 'label_field',
8ab43c93
CW
88 'description' => 'Field to show when displaying a record',
89 ],
09815e9c
CW
90 [
91 'name' => 'searchable',
aa998597
CW
92 'description' => 'How should this entity be presented in search UIs',
93 'options' => [
94 'primary' => ts('Primary'),
95 'secondary' => ts('Secondary'),
c5076889 96 'bridge' => ts('Bridge'),
aa998597
CW
97 'none' => ts('None'),
98 ],
09815e9c 99 ],
a7bd99ff
CW
100 [
101 'name' => 'paths',
102 'data_type' => 'Array',
103 'description' => 'System paths for accessing this entity',
104 ],
f827fe49
CW
105 [
106 'name' => 'see',
e15f9453 107 'data_type' => 'Array',
f827fe49
CW
108 'description' => 'Any @see annotations from docblock',
109 ],
d44cc3cb
CW
110 [
111 'name' => 'since',
112 'data_type' => 'String',
113 'description' => 'Version this API entity was added',
114 ],
a75e3a97
CW
115 [
116 'name' => 'class',
117 'data_type' => 'String',
118 'description' => 'PHP class name',
119 ],
c5368b3b
CW
120 [
121 'name' => 'bridge',
122 'data_type' => 'Array',
123 'description' => 'Connecting fields for EntityBridge types',
124 ],
2f616560
CW
125 [
126 'name' => 'ui_join_filters',
127 'data_type' => 'Array',
128 'description' => 'When joining entities in the UI, which fields should be presented by default in the ON clause',
129 ],
19b53e5b 130 ];
6764a9d3 131 }))->setCheckPermissions($checkPermissions);
19b53e5b
C
132 }
133
134 /**
6764a9d3 135 * @param bool $checkPermissions
ac018ab9 136 * @deprecated
19b53e5b
C
137 * @return Action\Entity\GetLinks
138 */
6764a9d3
CW
139 public static function getLinks($checkPermissions = TRUE) {
140 return (new Action\Entity\GetLinks('Entity', __FUNCTION__))
141 ->setCheckPermissions($checkPermissions);
19b53e5b
C
142 }
143
144 /**
145 * @return array
146 */
147 public static function permissions() {
148 return [
149 'default' => ['access CiviCRM'],
150 ];
151 }
152
153}