summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-07-02 12:32:09 +0000
committerDries Buytaert <dries@buytaert.net>2005-07-02 12:32:09 +0000
commitdb3a2cc175a0e77a1ed8e5bbd63e5710b35d2c09 (patch)
treea3079220491d4abd8d4019a092f0261603bca023 /includes/theme.inc
parentaa75f0a18c06950d39778fab310086257c4909d6 (diff)
downloadbrdo-db3a2cc175a0e77a1ed8e5bbd63e5710b35d2c09.tar.gz
brdo-db3a2cc175a0e77a1ed8e5bbd63e5710b35d2c09.tar.bz2
- Patch #11927 by stefan/Robin: improved theming of tablesort icons.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc17
1 files changed, 17 insertions, 0 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 7d3cd8cbd..730446743 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -728,6 +728,23 @@ function theme_table($header, $rows, $attributes = NULL) {
}
/**
+ * Return a themed sort icon.
+ *
+ * @param $style
+ * Set to either asc or desc. This sets which icon to show.
+ * @return
+ * A themed sort icon.
+ */
+function theme_tablesort_indicator($style) {
+ if ($style == "asc"){
+ return theme('image', 'misc/arrow-asc.png', t('sort icon'), t('sort ascending'));
+ }
+ else {
+ return theme('image', 'misc/arrow-desc.png', t('sort icon'), t('sort descending'));
+ }
+}
+
+/**
* Return a themed box.
*
* @param $title