You are here

function stylizer_ui::list_sort_options in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 stylizer/plugins/export_ui/stylizer_ui.class.php \stylizer_ui::list_sort_options()

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

stylizer/plugins/export_ui/stylizer_ui.class.php, line 63

Class

stylizer_ui
UI class for Stylizer.

Code

function list_sort_options() {
  return array(
    'disabled' => t('Enabled, title'),
    'title' => t('Title'),
    'name' => t('Name'),
    'base' => t('Base'),
    'type' => t('Type'),
    'storage' => t('Storage'),
  );
}