diff options
Diffstat (limited to 'modules/notification/views/comment_published.html.php')
| -rw-r--r-- | modules/notification/views/comment_published.html.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/notification/views/comment_published.html.php b/modules/notification/views/comment_published.html.php new file mode 100644 index 0000000..ac36a2c --- /dev/null +++ b/modules/notification/views/comment_published.html.php @@ -0,0 +1,35 @@ +<?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> |
