function tablesort_init

Initialize the table sort context.

3 calls to tablesort_init()

File

drupal/includes/tablesort.inc, line 109
Functions to aid in the creation of sortable tables.

Code

function tablesort_init($header) {
  $ts = tablesort_get_order($header);
  $ts['sort'] = tablesort_get_sort($header);
  $ts['query'] = tablesort_get_query_parameters();
  return $ts;
}