This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/modules/notification/views/comment_published.html.php

36 lines
945 B
PHP
Raw Normal View History

2013-04-04 09:26:00 +00:00
<?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("Comment:") ?></td>
<td><?= nl2br(html::purify($comment->text)) ?></td>
</tr>
<tr>
<td><?= t("Author name:") ?></td>
<td><?= html::clean($comment->author_name()) ?></td>
</tr>
<tr>
<td><?= t("Author email:") ?></td>
<td><?= html::clean($comment->author_email()) ?></td>
</tr>
<tr>
<td><?= t("Author URL:") ?></td>
<td><?= html::clean($comment->author_url()) ?></td>
</tr>
<tr>
<td><?= t("Url:") ?></td>
<td>
<a href="<?= $comment->item()->abs_url() ?>#comments">
<?= $comment->item()->abs_url() ?>#comments
</a>
</td>
</tr>
</table>
</body>
</html>