Files
gallery3/modules/gallery/views/admin_block_photo_stream.html.php
Johan Cwiklinski 6746792bdf Drop short_tags
2018-05-19 17:01:37 +02:00

15 lines
511 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<?php foreach ($photos as $photo): ?>
<li class="g-item g-photo">
<a href="<?= $photo->url() ?>" title="<?= html::purify($photo->title)->for_html_attr() ?>">
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
src="<?= $photo->thumb_url() ?>" alt="<?= html::purify($photo->title)->for_html_attr() ?>" />
</a>
</li>
<?php endforeach ?>
</ul>
<p>
<?= t("Recent photos added to your Gallery") ?>
</p>