You are here

protected function gdpr_fields_ui::rtfOptions in General Data Protection Regulation 7

Get the options array for right to be forgotten field.

Return value

array Right to be forgotten field options array.

2 calls to gdpr_fields_ui::rtfOptions()
gdpr_fields_ui::list_build_row in modules/gdpr_fields/plugins/export_ui/gdpr_fields_ui.class.php
Build a row based on the item.
gdpr_fields_ui::list_form in modules/gdpr_fields/plugins/export_ui/gdpr_fields_ui.class.php
Create the filter/sort form at the top of a list of exports.

File

modules/gdpr_fields/plugins/export_ui/gdpr_fields_ui.class.php, line 48
Contains the CTools Export UI integration code.

Class

gdpr_fields_ui
CTools Export UI class handler for GDPR Fields UI.

Code

protected function rtfOptions() {
  return array(
    '' => 'Not configured',
    'anonymise' => 'Anonymise',
    'remove' => 'Remove',
    'maybe' => 'Maybe included',
    'no' => 'Not included',
  );
}