You are here

public function linkit_profiles_ui::list_sort_options in Linkit 7.2

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

plugins/export_ui/linkit_profiles_ui.class.php, line 74
Class that extends the regular ctools export ui.

Class

linkit_profiles_ui
Base class for export UI.

Code

public function list_sort_options() {
  $options = array(
    'disabled' => t('Weight'),
    'disabled_title' => t('Enabled, title'),
    'admin_title' => t('Title'),
    'name' => t('Name'),
    'storage' => t('Storage'),
  );
  return $options;
}