You are here

function semantic_panels_style_ui::list_sort_options in Semantic Panels 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/semantic_panels_style_ui.class.php, line 8

Class

semantic_panels_style_ui
Base class for export UI.

Code

function list_sort_options() {
  return array(
    'disabled' => t('Enabled, title'),
    'title' => t('Title'),
    'name' => t('Name'),
    'category' => t('Category'),
    'storage' => t('Storage'),
  );
}