mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 21:38:05 +02:00
25 lines
855 B
PHP
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,
|
|
],
|
|
];
|