function theme_tablesort_indicator

theme_tablesort_indicator($variables)

Returns HTML for a sort icon.

Parameters

$variables: An associative array containing:

  • style: Set to either 'asc' or 'desc', this determines which icon to show.

Related topics

File

includes/theme.inc, line 2129
The theme system, which controls the output of Drupal.

Code

function theme_tablesort_indicator($variables) {
  if ($variables['style'] == "asc") {
    return theme('image', array('path' => 'misc/arrow-asc.png', 'width' => 13, 'height' => 13, 'alt' => t('sort ascending'), 'title' => t('sort ascending')));
  }
  else {
    return theme('image', array('path' => 'misc/arrow-desc.png', 'width' => 13, 'height' => 13, 'alt' => t('sort descending'), 'title' => t('sort descending')));
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!theme.inc/function/theme_tablesort_indicator/7.x