You are here

function panels_layouts_ui::list_sort_options in Panels 7.3

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

plugins/export_ui/panels_layouts_ui.class.php, line 185
Contains the administrative UI for reusable layouts.

Class

panels_layouts_ui
@file Contains the administrative UI for reusable layouts.

Code

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