xref: /dokuwiki/lib/images/fileicons/index.php (revision 257be26ca11cc3e4cd657879dce08ee32d8767dd)
1c8839c22SAnika Henke<!DOCTYPE html>
2c8839c22SAnika Henke<html lang="en" dir="ltr">
346c43bd8Sotto<head>
43c72355eSRainbow Spike    <title>Filetype icons</title>
5c6480b76SAndreas Gohr
659305168SPhy    <style>
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*257be26cSAndreas Gohr$fi_list = '';
33*257be26cSAndreas Gohr$fi_list32 = '';
34ebb53cb7SAndreas Gohrforeach (glob('*.png') as $img) {
353c72355eSRainbow Spike    $fi_list .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
36c6480b76SAndreas Gohr}
373c72355eSRainbow Spikeforeach (glob('32x32/*.png') as $img) {
383c72355eSRainbow Spike    $fi_list32 .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
393c72355eSRainbow Spike}
403c72355eSRainbow Spikeecho '<div class="white box">
4139a5e54fSRainbow Spike' . $fi_list . '
42c6480b76SAndreas Gohr</div>
43c6480b76SAndreas Gohr
44c6480b76SAndreas Gohr<div class="black box">
4539a5e54fSRainbow Spike' . $fi_list . '
46c6480b76SAndreas Gohr</div>
47c6480b76SAndreas Gohr
48dfe934f9SAndreas Gohr<br style="clear: left" />
49dfe934f9SAndreas Gohr
50dfe934f9SAndreas Gohr<div class="white box">
5139a5e54fSRainbow Spike' . $fi_list32 . '
52dfe934f9SAndreas Gohr</div>
53dfe934f9SAndreas Gohr
54dfe934f9SAndreas Gohr<div class="black box">
5539a5e54fSRainbow Spike' . $fi_list32;
56dfe934f9SAndreas Gohr?>
57dfe934f9SAndreas Gohr</div>
58dfe934f9SAndreas Gohr
59c6480b76SAndreas Gohr</body>
60c6480b76SAndreas Gohr</html>
61