You are here

function panels_mini_ui::list_sort_options in Panels 7.3

Same name and namespace in other branches
  1. 6.3 panels_mini/plugins/export_ui/panels_mini_ui.class.php \panels_mini_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

panels_mini/plugins/export_ui/panels_mini_ui.class.php, line 56

Class

panels_mini_ui
@file

Code

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