mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 13:33:15 +01:00
f8489c0ed1
jquery.jqplot.1.0.0b2_r947
38 lines
933 B
PHP
38 lines
933 B
PHP
<div class="example-nav">
|
|
<?php
|
|
$tmpnames = scandir('./');
|
|
|
|
foreach( $tmpnames as $value) {
|
|
if (preg_match('/^[a-z0-9][a-z0-9_\-]+\.html$/i', $value)) {
|
|
$files[] = $value;
|
|
}
|
|
}
|
|
$fcount = count($files);
|
|
$parts = explode("/", $_SERVER['SCRIPT_NAME']);
|
|
$curfile = end($parts);
|
|
$prevfile = '';
|
|
$nextfile = '';
|
|
// print_r($files);
|
|
|
|
for ($i=0; $i<$fcount; $i++) {
|
|
if ($curfile == $files[$i]) {
|
|
if ($i == 0) {
|
|
$prevfile = $files[$fcount-1];
|
|
$nextfile = $files[1];
|
|
}
|
|
elseif ($i == $fcount-1) {
|
|
$prevfile = $files[$i-1];
|
|
$nextfile = $files[0];
|
|
}
|
|
else {
|
|
$prevfile = $files[$i-1];
|
|
$nextfile = $files[$i+1];
|
|
}
|
|
}
|
|
}
|
|
|
|
echo '<a href="'.$prevfile.'">Previous</a> <a href="./">Examples</a> <a href="'.$nextfile.'">Next</a>';
|
|
|
|
?>
|
|
</div>
|