diff options
Diffstat (limited to 'modules/notification/views/item_deleted.html.php')
| -rw-r--r-- | modules/notification/views/item_deleted.html.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/notification/views/item_deleted.html.php b/modules/notification/views/item_deleted.html.php new file mode 100644 index 0000000..a95cdd8 --- /dev/null +++ b/modules/notification/views/item_deleted.html.php @@ -0,0 +1,25 @@ +<?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 colspan="2"> + <?= t("To view the changed album %title use the link below.", + array("title" => html::purify($item->parent()->title))) ?> + </td> + </tr> + <tr> + <td><?= t("Url:") ?></td> + <td> + <a href="<?= $item->parent()->abs_url() ?>"> + <?= $item->parent()->abs_url() ?> + </a> + </td> + </tr> + </table> + </body> +</html> |
