theme_tablesort_indicator

Versions
4.7 – 6
theme_tablesort_indicator($style)
7
theme_tablesort_indicator($variables)

Return a themed sort icon.

Parameters

$variables An associative array containing:

  • style: Set to either asc or desc. This sets which icon to show.

Return value

A themed sort icon.

Related topics

Code

includes/theme.inc, line 1782

<?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')));
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.