You are here

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

Same name and namespace in other branches
  1. 7 ctools_custom_content/plugins/export_ui/ctools_custom_content_ui.class.php \ctools_custom_content_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

ctools_custom_content/plugins/export_ui/ctools_custom_content_ui.class.php, line 72

Class

ctools_custom_content_ui

Code

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