0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
3.0.2-6
/
standard
/
htdocs
/
themes
/
dark_canvas
/
views
/
[
Home
]
File: info_block.html.php
<?php defined("SYSPATH") or die("No direct script access.") ?> <ul class="g-metadata"> <li> <strong class="caption"><?= t("Title:") ?></strong> <?= html::purify($item->title) ?> </li> <? if ($item->description): ?> <li> <strong class="caption"><?= t("Description:") ?></strong> <?= nl2br(html::purify($item->description)) ?> </li> <? endif ?> <? if (!$item->is_album()): ?> <li> <strong class="caption"><?= t("File name:") ?></strong> <?= html::clean($item->name) ?> </li> <? endif ?> <? if ($item->is_album()): ?> <li> <strong class="caption"><?= t("Number of photos:") ?></strong> <?= html::clean($item->viewable()->descendants_count()) ?> </li> <? endif ?> <? if ($item->captured): ?> <li> <strong class="caption"><?= t("Captured:") ?></strong> <?= date("M j, Y H:i:s", $item->captured)?> </li> <? endif ?> </ul>