1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/obsolete/web_client/application/views/image_block.html.php

17 lines
494 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<script>
$("#image_block").ready(function() {
setTimeout("reloadRandomImage();", 10000); // Change the random image block
});
function reloadRandomImage() {
$.get("/g3_client/index.php/g3_client/block/random", function(data, textStatus) {
$("#image_block").html(data);
});
}
</script>
<h3>Random Image</h3>
<a href="<?= $path ?>">
<img src="<?= $src ?>" alt="<?= $title ?>" />
</a>
<p><?= $title ?></p>