You are here

function _photos_order_label in Album Photos 6.2

Same name and namespace in other branches
  1. 7.3 photos.module \_photos_order_label()
2 calls to _photos_order_label()
photos_admin_settings in inc/photos.admin.inc
_photos_form in inc/photos.form.inc

File

./photos.module, line 1539

Code

function _photos_order_label() {
  return array(
    'timestamp|desc' => t('Date - newest first'),
    'timestamp|asc' => t('Date - oldest first'),
    'weight|desc' => t('Weight - smallest first'),
    'weight|asc' => t('Weight - largest first'),
    'comments|desc' => t('Comments - most first'),
    'comments|asc' => t('Comments - least first'),
    'filesize|desc' => t('Filesize - smallest first'),
    'filesize|asc' => t('Filesize - largest first'),
    'visits|desc' => t('Visits - most first'),
    'visits|asc' => t('Visits - least first'),
  );
}