Apply buttons to comment moderation and action buttons, beginnings of a photo stream carousel block in admin dashboard.

This commit is contained in:
Chad Kieffer
2009-02-15 22:36:51 +00:00
parent 6c59a19677
commit d04dbadfa1
4 changed files with 125 additions and 51 deletions
+10 -6
View File
@@ -1,10 +1,14 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<p>
Recent photos added to your Gallery
</p>
<ul>
<? foreach ($photos as $photo): ?>
<a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
<li class="gItem gPhoto">
<a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
src="<?= $photo->thumb_url() ?>" alt="<?= $photo->title ?>" />
</a>
</a>
</li>
<? endforeach ?>
</ul>
<p>
<?= t("Recent photos added to your Gallery") ?>
</p>