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