Skip to content

Commit

Permalink
Trunk merge r5076 from bug:1119
Browse files Browse the repository at this point in the history
bug:1119


git-svn-id: http://piwigo.org/svn/trunk@5079 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
Gotcha committed Mar 7, 2010
1 parent 7634e52 commit 7b4f21b
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
23 changes: 23 additions & 0 deletions admin/cat_list.php
Expand Up @@ -132,6 +132,29 @@ function save_categories_order($categories)
l10n('Categories ordered alphanumerically')
);
}
// sort categories alpha-numerically reverse
else if (isset($_POST['submitOrderAlphaNumReverse']))
{
$query = '
SELECT id, name
FROM '.CATEGORIES_TABLE.'
WHERE id_uppercat '.
(!isset($_GET['parent_id']) ? 'IS NULL' : '= '.$_GET['parent_id']).'
;';
$result = pwg_query($query);
while ($row = pwg_db_fetch_assoc($result))
{
$categories[ $row['id'] ] = strtolower($row['name']);
}

arsort($categories, SORT_REGULAR);
save_categories_order(array_keys($categories));

array_push(
$page['infos'],
l10n('Categories ordered alphanumerically reverse')
);
}

// +-----------------------------------------------------------------------+
// | Navigation path |
Expand Down
2 changes: 2 additions & 0 deletions admin/template/goto/cat_list.tpl
Expand Up @@ -41,6 +41,7 @@
<p>
<input class="submit" name="submitOrder" type="submit" value="{'Save order'|@translate}" {$TAG_INPUT_ENABLED}>
<input class="submit" name="submitOrderAlphaNum" type="submit" value="{'Order alphanumerically'|@translate}" {$TAG_INPUT_ENABLED}>
<input class="submit" name="submitOrderAlphaNumReverse" type="submit" value="{'Order alphanumerically reverse'|@translate}" {$TAG_INPUT_ENABLED}>
</p>
<ul class="categoryUl">

Expand Down Expand Up @@ -85,6 +86,7 @@
<p>
<input class="submit" name="submitOrder" type="submit" value="{'Save order'|@translate}" {$TAG_INPUT_ENABLED}>
<input class="submit" name="submitOrderAlphaNum" type="submit" value="{'Order alphanumerically'|@translate}" {$TAG_INPUT_ENABLED}>
<input class="submit" name="submitOrderAlphaNumReverse" type="submit" value="{'Order alphanumerically reverse'|@translate}" {$TAG_INPUT_ENABLED}>
</p>

</form>
Expand Down
6 changes: 4 additions & 2 deletions language/en_UK/admin.lang.php
Expand Up @@ -66,7 +66,8 @@
$lang['Caddie'] = 'Caddie';
$lang['Categories authorized thanks to group associations'] = 'Categories authorized thanks to group associations';
$lang['Categories manual order was saved'] = 'Categories manual order was saved';
$lang['Categories ordered alphanumerically'] = 'Categories ordered alphanumerically';
$lang['Categories ordered alphanumerically'] = 'Categories ascending alphanumerically ordered';
$lang['Categories ordered alphanumerically reverse'] = 'Categories descending alphanumerically ordered';
$lang['Category elements associated to the following categories: %s'] = 'Category elements associated to the following categories: %s';
$lang['Check for upgrade failed for unknown reasons.'] = 'Check for upgrade failed for unknown reasons.';
$lang['Check for upgrade'] = 'Check for upgrade';
Expand Down Expand Up @@ -131,7 +132,8 @@
$lang['Only private categories are listed'] = 'Only private categories are listed';
$lang['Operating system'] = 'Operating system';
$lang['Options'] = 'Options';
$lang['Order alphanumerically'] = 'Order alphanumerically';
$lang['Order alphanumerically'] = 'Categories sorted in ascending order &dArr;';
$lang['Order alphanumerically inverse'] = 'Categories sorted in descending order &uArr;';
$lang['Other private categories'] = 'Other private categories';
$lang['Page banner'] = 'Page banner';
$lang['Parent category'] = 'Parent category';
Expand Down
6 changes: 4 additions & 2 deletions language/fr_FR/admin.lang.php
Expand Up @@ -66,7 +66,8 @@
$lang['Caddie'] = 'Panier';
$lang['Categories authorized thanks to group associations'] = 'Catégories accessibles grâce à l\'appartenance aux groupes';
$lang['Categories manual order was saved'] = 'L\'ordre manuel des catégories a été sauvegardé';
$lang['Categories ordered alphanumerically'] = 'Catégories ordonnées alphabético-numériquement';
$lang['Categories ordered alphanumerically'] = 'Catégories triées par ordre croissant alphabético-numériquement.';
$lang['Categories ordered alphanumerically reverse'] = 'Catégories triées par ordre décroissant alphabético-numériquement.';
$lang['Category elements associated to the following categories: %s'] = 'Les éléments de la catégorie ont été associés aux catégories suivantes : %s';
$lang['Check for upgrade failed for unknown reasons.'] = 'La vérification de la dernière version sur le serveur a échouée pour une raison inconnue.';
$lang['Check for upgrade'] = 'Dernière version ?';
Expand Down Expand Up @@ -131,7 +132,8 @@
$lang['Only private categories are listed'] = 'Seules les catégories privées sont listées';
$lang['Operating system'] = 'Système d\'exploitation';
$lang['Options'] = 'Options';
$lang['Order alphanumerically'] = 'Ordonner alphabético-numériquement';
$lang['Order alphanumerically'] = 'Trier par ordre croissant &dArr;';
$lang['Order alphanumerically reverse'] = 'Trier par ordre décroissant &uArr;';
$lang['Other private categories'] = 'Autres catégories privées';
$lang['Page banner'] = 'Bannière des pages';
$lang['Parent category'] = 'Catégorie parente';
Expand Down

0 comments on commit 7b4f21b

Please sign in to comment.