xref: /dokuwiki/lib/images/fileicons/index.php (revision 3c72355e47ff673d5946eec9d8b9d8f0c93cb05c)
1c8839c22SAnika Henke<!DOCTYPE html>
2c8839c22SAnika Henke<html lang="en" dir="ltr">
346c43bd8Sotto<head>
4*3c72355eSRainbow 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
32*3c72355eSRainbow Spike$fi_list = ''; $fi_list32 = '';
33ebb53cb7SAndreas Gohrforeach (glob('*.png') as $img) {
34*3c72355eSRainbow Spike    $fi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
35c6480b76SAndreas Gohr}
36*3c72355eSRainbow Spikeforeach (glob('32x32/*.png') as $img) {
37*3c72355eSRainbow Spike    $fi_list32 .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
38*3c72355eSRainbow Spike}
39*3c72355eSRainbow Spikeecho '<div class="white box">
40*3c72355eSRainbow Spike'.$filist.'
41c6480b76SAndreas Gohr</div>
42c6480b76SAndreas Gohr
43c6480b76SAndreas Gohr<div class="black box">
44*3c72355eSRainbow Spike'.$filist.'
45c6480b76SAndreas Gohr</div>
46c6480b76SAndreas Gohr
47dfe934f9SAndreas Gohr<br style="clear: left" />
48dfe934f9SAndreas Gohr
49dfe934f9SAndreas Gohr<div class="white box">
50*3c72355eSRainbow Spike'.$filist32.'
51dfe934f9SAndreas Gohr</div>
52dfe934f9SAndreas Gohr
53dfe934f9SAndreas Gohr<div class="black box">
54*3c72355eSRainbow Spike'.$filist32;
55dfe934f9SAndreas Gohr?>
56dfe934f9SAndreas Gohr</div>
57dfe934f9SAndreas Gohr
58c6480b76SAndreas Gohr</body>
59c6480b76SAndreas Gohr</html>
60