mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
git-svn-id: http://www.observium.org/svn/observer/trunk@2408 61d68cd4-352d-0410-923a-c4978735b2b8
36 lines
927 B
PHP
36 lines
927 B
PHP
<div class="nav">
|
|
<?php
|
|
$dh = opendir('./');
|
|
while (false !== ($filename = readdir($dh))) {
|
|
if (preg_match('/^[a-z0-9]+\.html$/i', $filename)) {
|
|
$files[] = $filename;
|
|
}
|
|
}
|
|
$fcount = count($files);
|
|
$parts = explode("/", $_SERVER['SCRIPT_NAME']);
|
|
$curfile = end($parts);
|
|
$prevfile = '';
|
|
$nextfile = '';
|
|
// echo $fcount, $curfile;
|
|
// print_r($files);
|
|
|
|
for ($i=0; $i<$fcount; $i++) {
|
|
if ($curfile == $files[$i]) {
|
|
$prevfile = $files[$i-1];
|
|
$nextfile = $files[$i+1];
|
|
if ($i == 0) {
|
|
$prevfile = $files[$fcount-1];
|
|
$nextfile = $files[1];
|
|
}
|
|
elseif ($i == $fcount-1) {
|
|
$prevfile = $files[$i-1];
|
|
$nextfile = $files[0];
|
|
}
|
|
}
|
|
}
|
|
|
|
echo '<a href="'.$prevfile.'">Previous</a> <a href="./">Examples</a> <a href="'.$nextfile.'">Next</a>';
|
|
|
|
?>
|
|
</div>
|