summaryrefslogtreecommitdiff
path: root/modules/notification/views/comment_published.html.php
blob: 23588c728dcc08f2358e6e93c472e545da1f8bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
  <head>
    <title><?= $subject ?> </title>
  </head>
  <body>
    <h2><?= $subject ?></h2>
    <table>
      <tr>
        <td><?= t("Comment:") ?></td>
        <td><?= $comment->text ?></td>
      </tr>
      <tr>
        <td><?= t("Author Name:") ?></td>
        <td><?= $comment->author_name() ?></td>
      </tr>
      <tr>
        <td><?= t("Author Email:") ?></td>
        <td><?= $comment->author_email() ?></td>
      </tr>
      <tr>
        <td><?= t("Author URL:") ?></td>
        <td><?= $comment->author_url() ?></td>
      </tr>
      <tr>
        <td><?= t("Url:") ?></td>
        <td><a href="<?= $comment->item()->url(array(), true) ?>#comments"><?= $comment->item()->url(array(), true) ?>#comments</a></td>
      </tr>
    </table>
  </body>
</html>