contactcats/settings/contactcategory.setting.php
2025-02-24 13:16:05 +00:00

25 lines
855 B
PHP

<?php
return [
'contactcats_last_run' => [
'name' => 'contact_categories_last_run',
'title' => ts('Contact categories last assigned timestamp'),
'description' => ts('UNIX timestamp of last time the categories were assigned to contacts.'),
'group_name' => 'domain',
'type' => 'Int',
'default' => FALSE,
'add' => '5.70',
'is_domain' => 1,
'is_contact' => 0,
],
'contactcats_next_run' => [
'name' => 'contact_categories_next_run',
'title' => ts('Contact categories next assignment due'),
'description' => ts('UNIX timestamp after which cron will re-assign categories to contacts.'),
'group_name' => 'domain',
'type' => 'Int',
'default' => FALSE,
'add' => '5.70',
'is_domain' => 1,
'is_contact' => 0,
],
];