diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-23 15:06:17 -0700 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-23 15:06:17 -0700 |
| commit | 65051a4bf77321518a0cf80bc328a7ed609dfc90 (patch) | |
| tree | c6377d72dc07ab92ccd153d5eb1e1bd736502843 /themes/default/views/album.html.php | |
| parent | 3efaf4b1a11fbc7ef1cfd265086e92a9b1ef4eb8 (diff) | |
Rename the default themes to wind and admin_wind. Change xss_data.txt file to reflect this move. Not completely moved yet, but the git st is rather large so lets commit this now as a base for the cleanup.
Diffstat (limited to 'themes/default/views/album.html.php')
| -rw-r--r-- | themes/default/views/album.html.php | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/themes/default/views/album.html.php b/themes/default/views/album.html.php deleted file mode 100644 index 01f7be50..00000000 --- a/themes/default/views/album.html.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<? // @todo Set hover on AlbumGrid list items for guest users ?> -<div id="gInfo"> - <?= $theme->album_top() ?> - <h1><?= html::purify($item->title) ?></h1> - <div class="gDescription"><?= nl2br(html::purify($item->description)) ?></div> -</div> - -<ul id="gAlbumGrid"> -<? if (count($children)): ?> - <? foreach ($children as $i => $child): ?> - <? $item_class = "gPhoto"; ?> - <? if ($child->is_album()): ?> - <? $item_class = "gAlbum"; ?> - <? endif ?> - <li id="gItemId-<?= $child->id ?>" class="gItem <?= $item_class ?>"> - <?= $theme->thumb_top($child) ?> - <a href="<?= $child->url() ?>"> - <?= $child->thumb_img(array("class" => "gThumbnail")) ?> - </a> - <?= $theme->thumb_bottom($child) ?> - <?= $theme->context_menu($child, "#gItemId-{$child->id} .gThumbnail") ?> - <h2><span></span><a href="<?= $child->url() ?>"><?= html::purify($child->title) ?></a></h2> - <ul class="gMetadata"> - <?= $theme->thumb_info($child) ?> - </ul> - </li> - <? endforeach ?> -<? else: ?> - <? if ($user->admin || access::can("add", $item)): ?> - <? $addurl = url::file("index.php/simple_uploader/app/$item->id") ?> - <li><?= t("There aren't any photos here yet! <a %attrs>Add some</a>.", - array("attrs" => html::mark_clean("href=\"$addurl\" class=\"gDialogLink\""))) ?></li> - <? else: ?> - <li><?= t("There aren't any photos here yet!") ?></li> - <? endif; ?> -<? endif; ?> -</ul> -<?= $theme->album_bottom() ?> - -<?= $theme->pager() ?> |
