forked from civicrm/civicrm-core
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CIVIPLMMSR-116: Fix upgrading sites with afform and searchkit enabled
Included in CiviCRM version: 5.53.0 PRs: - civicrm#23895 - civicrm#23896
- Loading branch information
1 parent
6aa4783
commit 302bf69
Showing
3 changed files
with
217 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,144 @@ | ||
<?php | ||
// Adds option group for Afform.type | ||
|
||
$mgd = [ | ||
use CRM_Afform_ExtensionUtil as E; | ||
|
||
// Adds option group for Afform.type | ||
return [ | ||
[ | ||
'name' => 'AfformType', | ||
'entity' => 'OptionGroup', | ||
'update' => 'always', | ||
'cleanup' => 'always', | ||
'params' => [ | ||
'name' => 'afform_type', | ||
'title' => 'Afform Type', | ||
'option_value_fields' => ['name', 'label', 'icon', 'description'], | ||
'version' => 4, | ||
'values' => [ | ||
'name' => 'afform_type', | ||
'title' => E::ts('Afform Type'), | ||
'description' => NULL, | ||
'data_type' => NULL, | ||
'is_reserved' => TRUE, | ||
'is_active' => TRUE, | ||
'is_locked' => FALSE, | ||
'option_value_fields' => [ | ||
'name', | ||
'label', | ||
'icon', | ||
'description', | ||
], | ||
], | ||
'match' => ['name'], | ||
], | ||
], | ||
[ | ||
'name' => 'AfformType:form', | ||
'entity' => 'OptionValue', | ||
'cleanup' => 'always', | ||
'update' => 'always', | ||
'params' => [ | ||
'option_group_id' => 'afform_type', | ||
'name' => 'form', | ||
'value' => 'form', | ||
'label' => 'Submission Form', | ||
'weight' => 0, | ||
'icon' => 'fa-list-alt', | ||
'version' => 4, | ||
'values' => [ | ||
'option_group_id.name' => 'afform_type', | ||
'name' => 'form', | ||
'value' => 'form', | ||
'label' => E::ts('Submission Form'), | ||
'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' => 'fa-list-alt', | ||
'color' => NULL, | ||
], | ||
'match' => ['option_group_id', 'name'], | ||
], | ||
], | ||
[ | ||
'name' => 'AfformType:search', | ||
'entity' => 'OptionValue', | ||
'cleanup' => 'always', | ||
'update' => 'always', | ||
'params' => [ | ||
'option_group_id' => 'afform_type', | ||
'name' => 'search', | ||
'value' => 'search', | ||
'label' => 'Search Form', | ||
'weight' => 10, | ||
'icon' => 'fa-search', | ||
'version' => 4, | ||
'values' => [ | ||
'option_group_id.name' => 'afform_type', | ||
'name' => 'search', | ||
'value' => 'search', | ||
'label' => E::ts('Search Form'), | ||
'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' => 'fa-search', | ||
'color' => NULL, | ||
], | ||
'match' => ['option_group_id', 'name'], | ||
], | ||
], | ||
[ | ||
'name' => 'AfformType:block', | ||
'entity' => 'OptionValue', | ||
'cleanup' => 'always', | ||
'update' => 'always', | ||
'params' => [ | ||
'option_group_id' => 'afform_type', | ||
'name' => 'block', | ||
'value' => 'block', | ||
'label' => 'Field Block', | ||
'weight' => 20, | ||
'icon' => 'fa-th-large', | ||
'version' => 4, | ||
'values' => [ | ||
'option_group_id.name' => 'afform_type', | ||
'name' => 'block', | ||
'value' => 'block', | ||
'label' => E::ts('Field Block'), | ||
'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' => 'fa-th-large', | ||
'color' => NULL, | ||
], | ||
'match' => ['option_group_id', 'name'], | ||
], | ||
], | ||
[ | ||
'name' => 'AfformType:system', | ||
'entity' => 'OptionValue', | ||
'cleanup' => 'always', | ||
'update' => 'always', | ||
'params' => [ | ||
'option_group_id' => 'afform_type', | ||
'name' => 'system', | ||
'value' => 'system', | ||
'label' => 'System Form', | ||
'weight' => 50, | ||
'icon' => 'fa-lock', | ||
'version' => 4, | ||
'values' => [ | ||
'option_group_id.name' => 'afform_type', | ||
'name' => 'system', | ||
'value' => 'system', | ||
'label' => E::ts('System Form'), | ||
'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' => 'fa-lock', | ||
'color' => NULL, | ||
], | ||
'match' => ['option_group_id', 'name'], | ||
], | ||
], | ||
]; | ||
|
||
return $mgd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,35 @@ | ||
<?php | ||
// Adds option group for SearchDisplay.type | ||
|
||
use CRM_Search_ExtensionUtil as E; | ||
|
||
// Adds option value to `tag_used_for`, allowing Saved Searches to be tagged | ||
return [ | ||
[ | ||
'name' => 'SavedSearch:tag_used_for', | ||
'entity' => 'OptionValue', | ||
'cleanup' => 'always', | ||
'update' => 'always', | ||
'params' => [ | ||
'option_group_id' => 'tag_used_for', | ||
'value' => 'civicrm_saved_search', | ||
'name' => 'SavedSearch', | ||
'label' => ts('Saved Searches'), | ||
'version' => 4, | ||
'values' => [ | ||
'option_group_id.name' => 'tag_used_for', | ||
'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'], | ||
], | ||
], | ||
]; |