summaryrefslogtreecommitdiff
path: root/lib/images/fileicons/index.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-02-16 20:52:10 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-02-16 20:52:10 +0100
commitdfe934f96f476bdcf60d82feceb4d2a78df28ca0 (patch)
tree7036626b48446557ef610076356f22dfada489b8 /lib/images/fileicons/index.php
parent221cb66533e11a3e20e642d760af06bb19f7e14b (diff)
downloadrpg-dfe934f96f476bdcf60d82feceb4d2a78df28ca0.tar.gz
rpg-dfe934f96f476bdcf60d82feceb4d2a78df28ca0.tar.bz2
Switched file icons against generated ones, added 32x32 versions
Diffstat (limited to 'lib/images/fileicons/index.php')
-rw-r--r--lib/images/fileicons/index.php23
1 files changed, 21 insertions, 2 deletions
diff --git a/lib/images/fileicons/index.php b/lib/images/fileicons/index.php
index f90e7e6f0..28de26062 100644
--- a/lib/images/fileicons/index.php
+++ b/lib/images/fileicons/index.php
@@ -30,7 +30,7 @@
<div class="white box">
<?php
-foreach (glob('*.png') as $img) {
+foreach (glob('16x16/*.png') as $img) {
echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
}
?>
@@ -38,11 +38,30 @@ foreach (glob('*.png') as $img) {
<div class="black box">
<?php
-foreach (glob('*.png') as $img) {
+foreach (glob('16x16/*.png') as $img) {
echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
}
?>
</div>
+<br style="clear: left" />
+
+<div class="white box">
+ <?php
+ foreach (glob('32x32/*.png') as $img) {
+ echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
+ }
+ ?>
+</div>
+
+<div class="black box">
+ <?php
+ foreach (glob('32x32/*.png') as $img) {
+ echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
+ }
+ ?>
+</div>
+
+
</body>
</html>