theme_tablesort_indicator($style)theme_tablesort_indicator($variables)Return a themed sort icon.
$variables An associative array containing:
A themed sort icon.
7/includes/theme.inc, line 1750
<?php
function theme_tablesort_indicator($variables) {
if ($variables['style'] == "asc") {
return theme('image', array('path' => 'misc/arrow-asc.png', 'alt' => t('sort ascending'), 'title' => t('sort ascending')));
}
else {
return theme('image', array('path' => 'misc/arrow-desc.png', 'alt' => t('sort descending'), 'title' => t('sort descending')));
}
}
?>