Files
gallery3/core/views/admin_block_photo_stream.html.php

11 lines
388 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<p>
Recent photos added to your Gallery
</p>
<? foreach ($photos as $photo): ?>
2009-01-12 08:20:39 +00:00
<a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
2009-01-12 08:20:39 +00:00
src="<?= $photo->thumb_url() ?>" alt="<?= $photo->title ?>" />
</a>
<? endforeach ?>