diff options
author | citizenz7 <citizenz7@protonmail.com> | 2017-04-20 18:50:55 +0200 |
---|---|---|
committer | citizenz7 <citizenz7@protonmail.com> | 2017-04-20 18:50:55 +0200 |
commit | 5fd9fa480f302902328b81f912dd67ce378284f8 (patch) | |
tree | 66234843ae2857fda12442e4f7577c527d48977c /Html/includes/ariane.php | |
parent | ebe731862c7c741171138b1083906f391fc35aff (diff) | |
download | freetorrent-5fd9fa480f302902328b81f912dd67ce378284f8.tar.xz freetorrent-5fd9fa480f302902328b81f912dd67ce378284f8.zip |
V.1.4.6
Diffstat (limited to 'Html/includes/ariane.php')
-rw-r--r-- | Html/includes/ariane.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Html/includes/ariane.php b/Html/includes/ariane.php new file mode 100644 index 0000000..d63374a --- /dev/null +++ b/Html/includes/ariane.php @@ -0,0 +1,32 @@ +<?php +$def = "index"; +$dPath = $_SERVER['REQUEST_URI']; +$dChunks = explode("/", $dPath); + +echo '<p class="ariane">'; + + echo '<a href="/">Accueil</a><span> › </span>'; + + for($i=1; $i<count($dChunks); $i++ ) { + echo '<a href="/'; + for($j=1; $j<=$i; $j++ ) { + echo $dChunks[$j]; + if ($j!=count($dChunks)-1) { + echo("/"); + } + } + + if ($i==count($dChunks)-1) { + $prChunks = explode(".", $dChunks[$i]); + if ($prChunks[0] == $def) $prChunks[0] = ""; + $prChunks[0] = $prChunks[0] . "</a>"; + } + else { + $prChunks[0]=$dChunks[$i] . '</a><span> ›› </span>'; + } + echo '">'; + echo str_replace("_" , " " , $prChunks[0]); + } + +echo '</p>'; +?> |