New sort plugin, including some optional sort modifications
[bizou.git] / plugins / _disabled / sort / before_content.php
1 <?php
2
3 # reverts the order of folders
4 # usefull if you have date named albums and you want the most recent first
5 $GLOBALS["folders"] = array_reverse($GLOBALS["folders"]);
6
7 # sort imageFiles by modification time instead of filename
8 # usefull if you have renammed camera photos
9 # http://stackoverflow.com/questions/2667065/sort-files-by-date-in-php
10 # http://fr.php.net/create_function
11 #usort( $GLOBALS["imageFiles"], create_function('$a,$b', 'return filemtime($a["file"]) > filemtime($b["file"]);') );