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

30 lines
713 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<head>
<title><?= html::clean($subject) ?> </title>
</head>
<body>
<h2><?= html::clean($subject) ?></h2>
<table>
<tr>
<td><?= t("Title:") ?></td>
<td><?= html::purify($item->title) ?></td>
</tr>
<tr>
<td><?= t("Url:") ?></td>
<td>
<a href="<?= $item->abs_url() ?>">
<?= $item->abs_url() ?>
</a>
</td>
</tr>
<?php if ($item->description): ?>
<tr>
<td><?= t("Description:") ?></td>
<td><?= nl2br(html::purify($item->description)) ?></td>
</tr>
<?php endif ?>
</table>
</body>
</html>