geändert: photoalben/photoalben.2015/2015-04-19_WerdaupokalXI_Werdau_U13U15U18U23/index.php geändert: photoalben/photoalben.2015/2015-04-19_WerdaupokalXI_Werdau_U13U15U18U23/view.php geändert: photoalben/photoalben.2015/2015-04-26_LittleOttoGoshiLiga2015-I_Halle_U9U12/index.php geändert: photoalben/photoalben.2015/2015-04-26_LittleOttoGoshiLiga2015-I_Halle_U9U12/view.php geändert: photoalben/photoalben.2015/2015-05-09_MixpokalXXX_Werdau_U13U15MF/index.php geändert: photoalben/photoalben.2015/2015-05-09_MixpokalXXX_Werdau_U13U15MF/view.php geändert: photoalben/photoalben.2015/2015-05-31_ITAJCXIV_Aue_U13U15U18U21/index.php geändert: photoalben/photoalben.2015/2015-05-31_ITAJCXIV_Aue_U13U15U18U21/view.php geändert: photoalben/photoalben.2015/2015-05-31_ZwergenturnierX_Aue_U9U11/index.php geändert: photoalben/photoalben.2015/2015-05-31_ZwergenturnierX_Aue_U9U11/view.php geändert: "photoalben/photoalben.2015/2015-06-21_LittleOttoGoshiLiga2015-II+HallCategory_Halle_U9U12U30\33430/index.php" geändert: "photoalben/photoalben.2015/2015-06-21_LittleOttoGoshiLiga2015-II+HallCategory_Halle_U9U12U30\33430/view.php" geändert: photoalben/photoalben.2015/2015-07-09_Sommerabschlussgrillen/index.php geändert: photoalben/photoalben.2015/2015-07-09_Sommerabschlussgrillen/view.php geändert: photoalben/photoalben.2015/2015-09-12_LokpokalXXXISparkassencupXXIV_U11mU13mU15mU18mM/index.php geändert: photoalben/photoalben.2015/2015-09-12_LokpokalXXXISparkassencupXXIV_U11mU13mU15mU18mM/view.php geändert: photoalben/photoalben.2015/2015-12-12_WeihnachtsturnierXX_Leipzig_U11U13/index.php geändert: photoalben/photoalben.2015/2015-12-12_WeihnachtsturnierXX_Leipzig_U11U13/view.php
97 lines
4.2 KiB
PHP
97 lines
4.2 KiB
PHP
<?php header("Content-Type: text/html; charset=utf-8")?>
|
|
<?php header("Cache-Control: max-age=3600")?>
|
|
<?php
|
|
$wkName = "Sommerabschlussgrillen 2015";
|
|
$imgList = array("P7090001.jpg","P7090002.jpg","P7090003.jpg","P7090004.jpg","P7090005.jpg","P7090006.jpg","P7090007.jpg","P7090008.jpg","P7090009.jpg","P7090010.jpg","P7090011.jpg","P7090012.jpg","P7090013.jpg","P7090014.jpg","P7090015.jpg","P7090016.jpg","P7090017.jpg","P7090018.jpg","P7090019.jpg","P7090020.jpg","P7090021.jpg","P7090022.jpg","P7090023.jpg","P7090024.jpg","P7090025.jpg","P7090026.jpg","P7090027.jpg","P7090028.jpg","P7090029.jpg","P7090030.jpg","P7090031.jpg","P7090032.jpg","P7090033.jpg","P7090034.jpg","P7090035.jpg","P7090036.jpg","P7090037.jpg","P7090038.jpg");
|
|
|
|
$imgSize = count( $imgList );
|
|
assert( $imgSize > 0, "Bilder leider nicht verfügbar!");
|
|
$currIndex = intval( $_GET["index"] );
|
|
if( $currIndex < 0 ) $currIndex = 0;
|
|
if( $currIndex >= $imgSize) $currIndex = $imgSize-1;
|
|
|
|
$imgInfos = array();
|
|
foreach( $imgList as $imgName ){
|
|
array_push( $imgInfos, getimagesize("thumbs/".str_replace(".jpg", ".png", $imgName)));
|
|
}
|
|
?>
|
|
<!DOCTYPE HTML>
|
|
<html lang="de">
|
|
<head>
|
|
<title><?php echo $wkName;?> Einzelansicht [<?php $currIndex;?>/<?php echo $imgSize;?>]</title>
|
|
<script type="text/javascript">
|
|
<!-- Leute mit aktiviertem JavaScript sollen die BlueImpGallery gezeigt bekommen -->
|
|
<?php
|
|
echo "window.location = \"index.php?index=".$currIndex."\"";
|
|
?>
|
|
</script>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="description" content="Die Judoka des Chemnitzer WSV beim Wettkampf <?php echo $wkName;?> (Bild [<?php $currIndex;?>/<?php echo $imgSize;?>])">
|
|
<meta name="keywords" content="Judo, <?php echo $wkName;?>, Bilder, Photos, Album, Galerie, Wettkampf, CWSV, Chemnitz, ">
|
|
<link rel="icon" href="/ressourcen/graphiken/icons/cwsv.ico">
|
|
<style type="text/css" media="screen">/*<![CDATA[*/ @import "table.css"; /*]]>*/</style>
|
|
<!-- Variante für die Leute ohne JavaScript (Anfang)-->
|
|
<noscript>
|
|
<table style="margin-left:auto;margin-right:auto;">
|
|
<tr>
|
|
<td>
|
|
<a href="index.php">
|
|
<img src="nav_topb.png" id="ntop" alt="Album" title="Album">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href="view.php?index=0">
|
|
<img src="nav_firstb.png" id="nfirst" alt="Zum Anfang" title="Zum Anfang">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex-10 >= 0 ? $currIndex - 10 : 0)."\"";?>>
|
|
<img src="nav_prev10b.png" id="nprev10" alt="10 Bilder zurück" title="10 Bilder zurück">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex-1 >= 0 ? $currIndex - 1 : 0)."\"";?>>
|
|
<img src="nav_prevb.png" id="nprev" alt="Bild zurück" title="Bild zurück">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+1 < $imgSize ? $currIndex + 1 : $imgSize-1)."\"";?>>
|
|
<img src="nav_nextb.png" id="nnext" alt="Bild vor" title="Bild vor">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+10 < $imgSize ? $currIndex + 10 : $imgSize-1)."\"";?>>
|
|
<img src="nav_next10b.png" id="nnext10" alt="10 Bilder vor" title="10 Bilder vor">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href=<?php echo "\"view.php?index=".( $imgSize-1 )."\""?>>
|
|
<img src="nav_lastb.png" id="nlast" alt="Zum Ende" title="Zum Ende">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<span id="image_name1"><?php echo $imgList[$currIndex]?></span>(<span id="image_num1"><?php echo $currIndex+1?></span>/<?php echo $imgSize;?>)
|
|
|
|
|
|
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+1 < $imgSize ? $currIndex + 1 : $imgSize-1)."\"";?>>
|
|
<img src=<?php echo "\"".$imgList[$currIndex]."\" alt=\"".$imgList[$currIndex]."\" id=\"main_image\" width=\"100%\""?>>
|
|
</a>
|
|
<br />
|
|
|
|
</noscript>
|
|
<!-- Ende der Variante für die Leute ohne JavaScript -->
|
|
|
|
<!--Beginn der Einbindung des Counters-->
|
|
<?php
|
|
$chCounter_page_title = "<?php echo $wkName;?> Einzelansicht [<?php $currIndex;?>/<?php echo $imgSize;?>]";
|
|
$chCounter_visible=0;
|
|
include( $_SERVER['DOCUMENT_ROOT'].'/expCounter/counter.php');?>
|
|
<!--Ende der Einbindung des Counters-->
|
|
</body>
|
|
</html>
|