SearchKit - Cleanup option group mgd files and translate labels
authorColeman Watts <coleman@civicrm.org>
Tue, 25 Oct 2022 05:43:04 +0000 (01:43 -0400)
committerColeman Watts <coleman@civicrm.org>
Tue, 25 Oct 2022 05:43:04 +0000 (01:43 -0400)
ext/search_kit/managed/SearchDisplayType.mgd.php
ext/search_kit/managed/TagUsedFor.mgd.php

index 94d55fdf13732daded8fe543666faae5b94ade8f..4998d88c0e93e5054550f61f445ef01e943ad3eb 100644 (file)
@@ -1,6 +1,7 @@
 <?php
-// Adds option group for SearchDisplay.type
+use CRM_Search_ExtensionUtil as E;
 
+// Adds option group for SearchDisplay.type
 return [
   [
     'name' => 'SearchDisplayType',
@@ -12,11 +13,8 @@ return [
       'values' => [
         'name' => 'search_display_type',
         'title' => 'Search Display Type',
-        'description' => NULL,
-        'data_type' => NULL,
         'is_reserved' => TRUE,
         'is_active' => TRUE,
-        'is_locked' => FALSE,
         'option_value_fields' => [
           'name',
           'label',
@@ -38,19 +36,11 @@ return [
         'option_group_id.name' => 'search_display_type',
         'value' => 'table',
         'name' => 'crm-search-display-table',
-        'label' => 'Table',
+        'label' => E::ts('Table'),
         'icon' => 'fa-table',
-        'grouping' => NULL,
-        'filter' => 0,
-        'is_default' => FALSE,
-        'description' => NULL,
-        'is_optgroup' => FALSE,
-        'is_reserved' => FALSE,
+        'is_reserved' => TRUE,
         'is_active' => TRUE,
-        'color' => NULL,
-        'component_id' => NULL,
         'domain_id' => NULL,
-        'visibility_id' => NULL,
       ],
       'match' => ['option_group_id', 'name'],
     ],
@@ -66,19 +56,11 @@ return [
         'option_group_id.name' => 'search_display_type',
         'value' => 'list',
         'name' => 'crm-search-display-list',
-        'label' => 'List',
+        'label' => E::ts('List'),
         'icon' => 'fa-list',
-        'grouping' => NULL,
-        'filter' => 0,
-        'is_default' => FALSE,
-        'description' => NULL,
-        'is_optgroup' => FALSE,
-        'is_reserved' => FALSE,
+        'is_reserved' => TRUE,
         'is_active' => TRUE,
-        'color' => NULL,
-        'component_id' => NULL,
         'domain_id' => NULL,
-        'visibility_id' => NULL,
       ],
       'match' => ['option_group_id', 'name'],
     ],
@@ -94,19 +76,11 @@ return [
         'option_group_id.name' => 'search_display_type',
         'value' => 'grid',
         'name' => 'crm-search-display-grid',
-        'label' => 'Grid',
+        'label' => E::ts('Grid'),
         'icon' => 'fa-th',
-        'grouping' => NULL,
-        'filter' => 0,
-        'is_default' => FALSE,
-        'description' => NULL,
-        'is_optgroup' => FALSE,
-        'is_reserved' => FALSE,
+        'is_reserved' => TRUE,
         'is_active' => TRUE,
-        'color' => NULL,
-        'component_id' => NULL,
         'domain_id' => NULL,
-        'visibility_id' => NULL,
       ],
       'match' => ['option_group_id', 'name'],
     ],
index 711deda9e964c1cd130a46b6ab9b9d47b219097d..9f932beb20ddcf4ce4626de2056414dcfcfd3f3d 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 use CRM_Search_ExtensionUtil as E;
 
 // Adds option value to `tag_used_for`, allowing Saved Searches to be tagged
@@ -16,18 +15,9 @@ return [
         'value' => 'civicrm_saved_search',
         'name' => 'SavedSearch',
         'label' => E::ts('Saved Searches'),
-        'grouping' => NULL,
-        'filter' => 0,
-        'is_default' => FALSE,
-        'description' => NULL,
-        'is_optgroup' => FALSE,
         'is_reserved' => FALSE,
         'is_active' => TRUE,
-        'component_id' => NULL,
         'domain_id' => NULL,
-        'visibility_id' => NULL,
-        'icon' => NULL,
-        'color' => NULL,
       ],
       'match' => ['option_group_id', 'name'],
     ],