35 lines
800 B
PHP
35 lines
800 B
PHP
<script type="text/javascript">
|
|
|
|
var root = "<?php echo $_['root']; ?>";
|
|
|
|
$(document).ready(function() {
|
|
$("a[rel=images]").fancybox({
|
|
'titlePosition': 'inside'
|
|
});
|
|
});
|
|
|
|
</script>
|
|
|
|
<div id="controls"><?php
|
|
$sr = trim($_['root'], '/');
|
|
if (!empty($sr)) {
|
|
$paths = explode('/', $sr);
|
|
$path = '/';
|
|
for ($i = 0; $i < count($paths); $i++) {
|
|
$path .= urlencode($paths[$i]).'/';
|
|
$classess = 'crumb'.($i == count($paths)-1?' last':'');
|
|
echo '<div class="'.$classess.'" style="background-image:url(\''.\OCP\image_path('core','breadcrumb.png').'\')"><a href="'.\OCP\Util::linkTo('gallery', 'index.php').'&root='.$path.'">'.OCP\Util::sanitizeHTML($paths[$i]).'</a></div>';
|
|
}
|
|
}
|
|
|
|
?><br/>
|
|
</div>
|
|
<div id="gallerycontent">
|
|
<?php
|
|
session_write_close();
|
|
|
|
echo $_['tl']->get();
|
|
|
|
?>
|
|
</div>
|