summaryrefslogtreecommitdiff
path: root/modules/notification/views/item_added.html.php
blob: 1832fb3948cbb399c0f849b0b6637c5f339bf359 (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
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<head>
  <title><?= $subject ?> </title>
</head>
<body>
  <h2><?= sprintf(t("A new %s was added to %s"), $type, $parent_title); ?></h2>
  <table>
    <tr>
      <td><?= t("Title:") ?></td>
      <td><?= $item_title ?></td>
    </tr>
    <tr>
      <td><?= t("Url:") ?></td>
      <td><a href="<?= $url ?>"><?= $url ?></a></td>
    </tr>
    <? if (!empty($description)): ?>
    <tr>
      <td><?= t("Description:") ?></td>
      <td><?= $description ?></td>
    </tr>
    <? endif ?>
  </table>
</body>
</html>