ajout de la partie slam dans le dossier web
BIN
ap23/web/doku/lib/images/smileys/delete.gif
Normal file
After Width: | Height: | Size: 448 B |
BIN
ap23/web/doku/lib/images/smileys/facepalm.gif
Normal file
After Width: | Height: | Size: 185 B |
BIN
ap23/web/doku/lib/images/smileys/fixme.gif
Normal file
After Width: | Height: | Size: 450 B |
BIN
ap23/web/doku/lib/images/smileys/icon_arrow.gif
Normal file
After Width: | Height: | Size: 170 B |
BIN
ap23/web/doku/lib/images/smileys/icon_biggrin.gif
Normal file
After Width: | Height: | Size: 172 B |
BIN
ap23/web/doku/lib/images/smileys/icon_confused.gif
Normal file
After Width: | Height: | Size: 171 B |
BIN
ap23/web/doku/lib/images/smileys/icon_cool.gif
Normal file
After Width: | Height: | Size: 172 B |
BIN
ap23/web/doku/lib/images/smileys/icon_cry.gif
Normal file
After Width: | Height: | Size: 424 B |
BIN
ap23/web/doku/lib/images/smileys/icon_doubt.gif
Normal file
After Width: | Height: | Size: 178 B |
BIN
ap23/web/doku/lib/images/smileys/icon_doubt2.gif
Normal file
After Width: | Height: | Size: 180 B |
BIN
ap23/web/doku/lib/images/smileys/icon_eek.gif
Normal file
After Width: | Height: | Size: 170 B |
BIN
ap23/web/doku/lib/images/smileys/icon_evil.gif
Normal file
After Width: | Height: | Size: 188 B |
BIN
ap23/web/doku/lib/images/smileys/icon_exclaim.gif
Normal file
After Width: | Height: | Size: 171 B |
BIN
ap23/web/doku/lib/images/smileys/icon_frown.gif
Normal file
After Width: | Height: | Size: 171 B |
BIN
ap23/web/doku/lib/images/smileys/icon_fun.gif
Normal file
After Width: | Height: | Size: 179 B |
BIN
ap23/web/doku/lib/images/smileys/icon_idea.gif
Normal file
After Width: | Height: | Size: 176 B |
BIN
ap23/web/doku/lib/images/smileys/icon_kaddi.gif
Normal file
After Width: | Height: | Size: 179 B |
BIN
ap23/web/doku/lib/images/smileys/icon_lol.gif
Normal file
After Width: | Height: | Size: 344 B |
BIN
ap23/web/doku/lib/images/smileys/icon_mrgreen.gif
Normal file
After Width: | Height: | Size: 168 B |
BIN
ap23/web/doku/lib/images/smileys/icon_neutral.gif
Normal file
After Width: | Height: | Size: 171 B |
BIN
ap23/web/doku/lib/images/smileys/icon_question.gif
Normal file
After Width: | Height: | Size: 182 B |
BIN
ap23/web/doku/lib/images/smileys/icon_razz.gif
Normal file
After Width: | Height: | Size: 176 B |
BIN
ap23/web/doku/lib/images/smileys/icon_redface.gif
Normal file
After Width: | Height: | Size: 669 B |
BIN
ap23/web/doku/lib/images/smileys/icon_rolleyes.gif
Normal file
After Width: | Height: | Size: 471 B |
BIN
ap23/web/doku/lib/images/smileys/icon_sad.gif
Normal file
After Width: | Height: | Size: 171 B |
BIN
ap23/web/doku/lib/images/smileys/icon_silenced.gif
Normal file
After Width: | Height: | Size: 177 B |
BIN
ap23/web/doku/lib/images/smileys/icon_smile.gif
Normal file
After Width: | Height: | Size: 174 B |
BIN
ap23/web/doku/lib/images/smileys/icon_smile2.gif
Normal file
After Width: | Height: | Size: 174 B |
BIN
ap23/web/doku/lib/images/smileys/icon_surprised.gif
Normal file
After Width: | Height: | Size: 174 B |
BIN
ap23/web/doku/lib/images/smileys/icon_twisted.gif
Normal file
After Width: | Height: | Size: 180 B |
BIN
ap23/web/doku/lib/images/smileys/icon_wink.gif
Normal file
After Width: | Height: | Size: 170 B |
53
ap23/web/doku/lib/images/smileys/index.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<title>Smileys</title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
background-color: #ccc;
|
||||
font-family: Arial;
|
||||
}
|
||||
|
||||
.box {
|
||||
width: 200px;
|
||||
float: left;
|
||||
padding: 0.5em;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.white {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.black {
|
||||
background-color: #000;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<?php
|
||||
$smi_list = '';
|
||||
foreach (glob('*.gif') as $img) {
|
||||
$smi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
|
||||
}
|
||||
if(is_dir('local')) {
|
||||
$smi_list .= '<hr />';
|
||||
foreach (glob('local/*.gif') as $img) {
|
||||
$smi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
|
||||
}
|
||||
}
|
||||
|
||||
echo '<div class="white box">
|
||||
'.$smi_list.'
|
||||
</div>
|
||||
|
||||
<div class="black box">
|
||||
'.$smi_list;
|
||||
?>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|