xref: /dokuwiki/lib/images/fileicons/index.php (revision 39a5e54fe9c51bc59c5b5274d419ba31c6c9eef4)
1c8839c22SAnika Henke<!DOCTYPE html>
2c8839c22SAnika Henke<html lang="en" dir="ltr">
346c43bd8Sotto<head>
43c72355eSRainbow Spike    <title>Filetype icons</title>
5c6480b76SAndreas Gohr
6c6480b76SAndreas Gohr    <style type="text/css">
7c6480b76SAndreas Gohr        body {
8c6480b76SAndreas Gohr            background-color: #ccc;
9c6480b76SAndreas Gohr            font-family: Arial;
10c6480b76SAndreas Gohr        }
11c6480b76SAndreas Gohr
12c6480b76SAndreas Gohr        .box {
13c6480b76SAndreas Gohr            width: 200px;
14c6480b76SAndreas Gohr            float: left;
15c6480b76SAndreas Gohr            padding: 0.5em;
16c6480b76SAndreas Gohr            margin: 0;
17c6480b76SAndreas Gohr        }
18c6480b76SAndreas Gohr
19c6480b76SAndreas Gohr        .white {
20c6480b76SAndreas Gohr            background-color: #fff;
21c6480b76SAndreas Gohr        }
22c6480b76SAndreas Gohr
23c6480b76SAndreas Gohr        .black {
24c6480b76SAndreas Gohr            background-color: #000;
25c6480b76SAndreas Gohr        }
26c6480b76SAndreas Gohr    </style>
27c6480b76SAndreas Gohr
28c6480b76SAndreas Gohr</head>
29c6480b76SAndreas Gohr<body>
30c6480b76SAndreas Gohr
31c6480b76SAndreas Gohr<?php
323c72355eSRainbow Spike$fi_list = ''; $fi_list32 = '';
33ebb53cb7SAndreas Gohrforeach (glob('*.png') as $img) {
343c72355eSRainbow Spike    $fi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
35c6480b76SAndreas Gohr}
363c72355eSRainbow Spikeforeach (glob('32x32/*.png') as $img) {
373c72355eSRainbow Spike    $fi_list32 .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
383c72355eSRainbow Spike}
393c72355eSRainbow Spikeecho '<div class="white box">
40*39a5e54fSRainbow Spike'.$fi_list.'
41c6480b76SAndreas Gohr</div>
42c6480b76SAndreas Gohr
43c6480b76SAndreas Gohr<div class="black box">
44*39a5e54fSRainbow Spike'.$fi_list.'
45c6480b76SAndreas Gohr</div>
46c6480b76SAndreas Gohr
47dfe934f9SAndreas Gohr<br style="clear: left" />
48dfe934f9SAndreas Gohr
49dfe934f9SAndreas Gohr<div class="white box">
50*39a5e54fSRainbow Spike'.$fi_list32.'
51dfe934f9SAndreas Gohr</div>
52dfe934f9SAndreas Gohr
53dfe934f9SAndreas Gohr<div class="black box">
54*39a5e54fSRainbow Spike'.$fi_list32;
55dfe934f9SAndreas Gohr?>
56dfe934f9SAndreas Gohr</div>
57dfe934f9SAndreas Gohr
58c6480b76SAndreas Gohr</body>
59c6480b76SAndreas Gohr</html>
60