Grazie a Berdir l' ho fatto funzionare. Funziona così in modo più dettagliato.
Tablesort viene attivato "automaticamente" se l'array (colonna) nell'array $ headers contiene le chiavi 'data', 'campo' e facoltativamente 'ordina'. Questo creerà collegamenti con 'ordina' e 'ordina' nelle intestazioni delle colonne e mostrerà la piccola freccia e simili.
Per eseguire il proprio ordinamento, ottenere le impostazioni di ordinamento correnti con tablesort_get_order e tablesort_get_sort e utilizzare tali valori per la propria funzione di ordinamento. La chiave 'sql' nell'array restituita da tablesort_get_order contiene il nome del campo da utilizzare per l'ordinamento.
Un pezzo di codice di esempio (non testato) con l'array $ users contenente alcuni dettagli per ciascun utente:
// setup the table data that we want to show
$tableData = array();
foreach ($users as $userDetails) {
$tableData[] = array(
'name' => $userDetails['name'],
'visits' => $userDetails['visits'],
'views' => $userDetails['views'],
'comments' => $userDetails['comments']
);
}
// headers array, sorting by default on comments
$headers = array(
array('data' => t('Name'), 'field' => 'name'),
array('data' => t('Visits'), 'field' => 'visits'),
array('data' => t('Views'), 'field' => 'views'),
array('data' => t('Comments'), 'field' => 'comments', 'sort' => 'desc')
);
// getting the current sort and order parameters from the url
$order = tablesort_get_order($headers);
$sort = tablesort_get_sort($headers);
// sort the table data accordingly (write your own sort function)
$tableData = my_array_sort($tableData, $order['sql'], $sort);
// create the array with rows for theme table
$rows = array();
foreach ($tableData as $entry) {
$rows[] = array(
array('data' => $entry['name']),
array('data' => $entry['visits']),
array('data' => $entry['views']),
array('data' => $entry['comments']),
);
}
// add any attributes and sent everything to theme table
$attributes = array('class' => array('my_class'));
$table = array('header' => $headers, 'attributes' => $attributes, 'rows' => $rows);
$html = theme('table', $table);