mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 18:28:05 +02:00
15 lines
417 B
PHP
15 lines
417 B
PHP
<?php
|
|
return [
|
|
'contact_categories' => [
|
|
'name' => 'contact_categories',
|
|
'title' => ts('Contact Category settings'),
|
|
'description' => ts('JSON encoded settings.'),
|
|
'group_name' => 'domain',
|
|
'type' => 'String',
|
|
'serialize' => CRM_Core_DAO::SERIALIZE_JSON,
|
|
'default' => FALSE,
|
|
'add' => '5.70',
|
|
'is_domain' => 1,
|
|
'is_contact' => 0,
|
|
],
|
|
];
|