mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-05 06:31:35 -04:00
Add sending notifications when an item is deleted. We are almost
done, just need to do comments.
This commit is contained in:
@@ -107,9 +107,14 @@ class notification {
|
||||
self::_send_message($item, $body);
|
||||
}
|
||||
|
||||
static function send_item_delete($item) {
|
||||
static function send_item_deleted($item) {
|
||||
$parent = $item->parent();
|
||||
$body = new View("item_deleted.html");
|
||||
$body->subject = sprintf(t("Item deleted from %s"), $item->parent()->title);
|
||||
$body->subject = sprintf(t("Item %s deleted from %s"), $item->title, $parent->title);
|
||||
$body->parent_title = $parent->title;
|
||||
$body->type = $item->type;
|
||||
$body->item_title = $item->title;
|
||||
$body->url = url::site("albums/$parent->id", "http");
|
||||
|
||||
self::_send_message($item, $body);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user