You are here

public function gdpr_fields_ui::list_sort_options in General Data Protection Regulation 7

Provide a list of sort options.

Override this if you wish to provide more or change how these work. The actual handling of the sorting will happen in build_row().

Overrides ctools_export_ui::list_sort_options

File

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

Class

gdpr_fields_ui
CTools Export UI class handler for GDPR Fields UI.

Code

public function list_sort_options() {
  $options = parent::list_sort_options();
  unset($options['storage']);
  return $options;
}