You are here

function gdpr_tasks_entity_status_options_list in General Data Protection Regulation 7

Returns list of task statuses.

1 string reference to 'gdpr_tasks_entity_status_options_list'
gdpr_tasks_entity_property_info in modules/gdpr_tasks/gdpr_tasks.module
Implements hook_entity_property_info().

File

modules/gdpr_tasks/gdpr_tasks.module, line 962
Module file for the GDPR Tasks module.

Code

function gdpr_tasks_entity_status_options_list() {
  return [
    'requested' => t('Requested'),
    'reviewing' => t('Reviewing'),
    'processed' => t('Processed'),
    'closed' => t('Closed'),
  ];
}