mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 19:48:06 +02:00
24 lines
537 B
PHP
24 lines
537 B
PHP
<?php
|
|
use CRM_Contactcats_ExtensionUtil as E;
|
|
|
|
return [
|
|
[
|
|
'name' => 'OptionValue_changed_contact_category',
|
|
'entity' => 'OptionValue',
|
|
'cleanup' => 'unused',
|
|
'update' => 'unmodified',
|
|
'params' => [
|
|
'version' => 4,
|
|
'values' => [
|
|
'option_group_id.name' => 'activity_type',
|
|
'label' => E::ts('Changed Contact Category'),
|
|
'name' => 'changed_contact_category',
|
|
'icon' => 'fa-tags',
|
|
],
|
|
'match' => [
|
|
'option_group_id',
|
|
'name',
|
|
],
|
|
],
|
|
],
|
|
];
|