contactcats/managed/OptionValue_Changed_category.mgd.php
Rich Lott / Artful Robot 69d4c6b2e8 Fixes and tidies
2025-02-27 18:11:13 +00:00

26 lines
700 B
PHP

<?php
use CRM_Contactcats_ExtensionUtil as E;
return [
[
'name' => 'OptionValue_Changed_category',
'entity' => 'OptionValue',
'cleanup' => 'unused',
'update' => 'unmodified',
'params' => [
'version' => 4,
'values' => [
'option_group_id.name' => 'activity_type',
'label' => E::ts('Changed category'),
'name' => 'changed_contact_category',
'description' => E::ts('<p>This activity is automatically added when a contact is moved from one category to another.</p>'),
'icon' => 'fa-tags',
],
'match' => [
// Should this be option_group_id.name?
'option_group_id',
'name',
],
],
],
];