protected function gdpr_fields_ui::rtaOptions in General Data Protection Regulation 7
Get the options array for right to access field.
Return value
array Right to access field options array.
2 calls to gdpr_fields_ui::rtaOptions()
- 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 33 - Contains the CTools Export UI integration code.
Class
- gdpr_fields_ui
- CTools Export UI class handler for GDPR Fields UI.
Code
protected function rtaOptions() {
return array(
'' => 'Not configured',
'inc' => 'Included',
'maybe' => 'Maybe included',
'no' => 'Not included',
);
}