You are here

function gdpr_tasks_variable_info in General Data Protection Regulation 7

Implements hook_variable_info().

File

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

Code

function gdpr_tasks_variable_info($options) {
  $variable['gdpr_tasks_emails'] = array(
    'title' => t('GDPR taks emails'),
    'localize' => TRUE,
    'group' => 'gdpr_settings',
  );
  return $variable;
}