From 60f88aacc4727217ac79dcc6ede4ce42fefd1d50 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Tue, 23 Jun 2020 23:23:07 -0400 Subject: [PATCH] APIv4 - add meta-metadata to suppliment #17527 --- Civi/Api4/Entity.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Civi/Api4/Entity.php b/Civi/Api4/Entity.php index 430900b663..a7767eab47 100644 --- a/Civi/Api4/Entity.php +++ b/Civi/Api4/Entity.php @@ -47,6 +47,10 @@ class Entity extends Generic\AbstractEntity { 'name' => 'name', 'description' => 'Entity name', ], + [ + 'name' => 'title', + 'description' => 'Localized title', + ], [ 'name' => 'description', 'description' => 'Description from docblock', @@ -55,6 +59,14 @@ class Entity extends Generic\AbstractEntity { 'name' => 'comment', 'description' => 'Comments from docblock', ], + [ + 'name' => 'icon', + 'description' => 'crm-i icon class associated with this entity', + ], + [ + 'name' => 'dao', + 'description' => 'Class name for dao-based entities', + ], [ 'name' => 'see', 'data_type' => 'Array', -- 2.25.1