2010-07-06 14:12:00 -07:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
|
|
|
<div class="ui-helper-clearfix">
|
|
|
|
|
<p>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php if ($item->is_album()): ?>
|
2010-07-06 14:12:00 -07:00
|
|
|
<?= t("Delete the album <b>%title</b>? All photos and movies in the album will also be deleted.",
|
|
|
|
|
array("title" => html::purify($item->title))) ?>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php else: ?>
|
2010-07-06 14:12:00 -07:00
|
|
|
<?= t("Are you sure you want to delete <b>%title</b>?", array("title" => html::purify($item->title))) ?>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endif ?>
|
2010-07-06 14:12:00 -07:00
|
|
|
</p>
|
|
|
|
|
<?= $form ?>
|
|
|
|
|
</div>
|