I've been digging into theme.inc again to try to make the manage and sort photos tables a little more intuitive. The change I made is simple, but I don't have patching access, so if anyone wants to try to roll this please do. All it does is add little up and down arrows to the table header to show that this is the column for moving images up and down.

In theme.inc:
Line 129 old: $header = array('', t('Delete'), t('Thumbnail'), t('Edit'), t('Weight'), t('Cover'));
Line 129 new: $header = array('↑↓', t('Delete'), t('Thumbnail'), t('Edit'), t('Weight'), t('Cover'));

Line 154 old: $header = array('', t('Delete'), t('Thumbnail'), t('Weight'), t('Cover'));
Line 154 new: $header = array('↑↓', t('Delete'), t('Thumbnail'), t('Weight'), t('Cover'));

CommentFileSizeAuthor
#2 header.patch1.23 KBrschwab
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

rschwab’s picture

Input filter whoops! In the code the new lines should look like:

129:
$header = array('↑↓', t('Delete'), t('Thumbnail'), t('Edit'), t('Weight'), t('Cover'));

154:
$header = array('↑↓', t('Delete'), t('Thumbnail'), t('Weight'), t('Cover'));

- Ryan

rschwab’s picture

Status: Active » Needs review
FileSize
1.23 KB
justintime’s picture

Status: Needs review » Fixed

I like it. What's more, it's in the theme functions so it's easily overridable if others don't like it. Committed to both 2.x and 3.x.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.