tablesort_init

  1. drupal
    1. 4.7
    2. 5
    3. 6 tablesort.inc
    4. 7 tablesort.inc
Versions
4.7 – 7 tablesort_init($header)

Initialize the table sort context.

▾ 2 functions call tablesort_init()

tablesort_sql in includes/tablesort.inc
Create an SQL sort clause.
theme_table in includes/theme.inc
Return a themed table.

Code

includes/tablesort.inc, line 15

<?php
function tablesort_init($header) {
  $ts = tablesort_get_order($header);
  $ts['sort'] = tablesort_get_sort($header);
  $ts['query_string'] = tablesort_get_querystring();
  return $ts;
}
?>