function tablesort_init in Drupal 4
Same name and namespace in other branches
- 8 core/includes/tablesort.inc \tablesort_init()
- 5 includes/tablesort.inc \tablesort_init()
- 6 includes/tablesort.inc \tablesort_init()
- 7 includes/tablesort.inc \tablesort_init()
Initialize the table sort context.
2 calls to tablesort_init()
- tablesort_sql in includes/
tablesort.inc - Create an SQL sort clause.
- theme_table in includes/
theme.inc - Return a themed table.
File
- includes/
tablesort.inc, line 14 - 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_string'] = tablesort_get_querystring();
return $ts;
}