Changeset 23721 for trunk/include/functions_category.inc.php
- Timestamp:
- Jul 1, 2013, 9:01:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/functions_category.inc.php
r19703 r23721 222 222 return trigger_event('get_category_preferred_image_orders', array( 223 223 array(l10n('Default'), '', true), 224 array(l10n('Photo title, A → Z'), 'name ASC',true),224 array(l10n('Photo title, A → Z'), 'name', true), 225 225 array(l10n('Photo title, Z → A'), 'name DESC', true), 226 226 array(l10n('Date created, new → old'), 'date_creation DESC', true), 227 array(l10n('Date created, old → new'), 'date_creation ASC',true),227 array(l10n('Date created, old → new'), 'date_creation', true), 228 228 array(l10n('Date posted, new → old'), 'date_available DESC', true), 229 array(l10n('Date posted, old → new'), 'date_available ASC',true),229 array(l10n('Date posted, old → new'), 'date_available', true), 230 230 array(l10n('Rating score, high → low'), 'rating_score DESC', $conf['rate']), 231 array(l10n('Rating score, low → high'), 'rating_score ASC',$conf['rate']),231 array(l10n('Rating score, low → high'), 'rating_score', $conf['rate']), 232 232 array(l10n('Visits, high → low'), 'hit DESC', true), 233 array(l10n('Visits, low → high'), 'hit ASC',true),233 array(l10n('Visits, low → high'), 'hit', true), 234 234 array(l10n('Permissions'), 'level DESC', is_admin()), 235 235 ));
Note: See TracChangeset
for help on using the changeset viewer.