summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/comment/helpers/comment_event.php16
-rw-r--r--modules/gallery/helpers/gallery_event.php7
-rw-r--r--modules/notification/helpers/notification_event.php4
3 files changed, 24 insertions, 3 deletions
diff --git a/modules/comment/helpers/comment_event.php b/modules/comment/helpers/comment_event.php
index f20e1a51..ddf72e3c 100644
--- a/modules/comment/helpers/comment_event.php
+++ b/modules/comment/helpers/comment_event.php
@@ -27,12 +27,22 @@ class comment_event_Core {
Database::instance()
->query("UPDATE {comments}
SET author_id = {$guest->id},
- guest_email = '{$user->email}',
- guest_name = '{$user->name}',
- guest_url = '{$user->url}'
+ guest_email = NULL,
+ guest_name = 'guest',
+ guest_url = NULL
WHERE author_id = {$user->id}");
}
+ static function identity_provider_changed($old_provider, $new_provider) {
+ $guest = identity::guest();
+ Database::instance()
+ ->query("UPDATE {comments}
+ SET author_id = {$guest->id},
+ guest_email = NULL,
+ guest_name = 'guest',
+ guest_url = null");
+ }
+
static function admin_menu($menu, $theme) {
$menu->get("content_menu")
->append(Menu::factory("link")
diff --git a/modules/gallery/helpers/gallery_event.php b/modules/gallery/helpers/gallery_event.php
index 7e0382ec..f3ad1630 100644
--- a/modules/gallery/helpers/gallery_event.php
+++ b/modules/gallery/helpers/gallery_event.php
@@ -35,6 +35,13 @@ class gallery_event_Core {
$db->query("UPDATE {items} SET owner_id = {$admin->id} where owner_id = {$user->id}");
}
+ static function identity_provider_changed($old_provider, $new_provider) {
+ $admin = identity::admin_user();
+ $db = Database::instance();
+ $db->query("UPDATE {tasks} SET owner_id = {$admin->id}");
+ $db->query("UPDATE {items} SET owner_id = {$admin->id}");
+ }
+
static function group_created($group) {
access::add_group($group);
}
diff --git a/modules/notification/helpers/notification_event.php b/modules/notification/helpers/notification_event.php
index e6791071..b82e4f0f 100644
--- a/modules/notification/helpers/notification_event.php
+++ b/modules/notification/helpers/notification_event.php
@@ -56,6 +56,10 @@ class notification_event_Core {
Database::instance()->query("DELETE FROM {subscriptions} where user_id = {$user->id}");
}
+ static function identity_provider_changed($old_provider, $new_provider) {
+ Database::instance()->query("DELETE FROM {subscriptions}");
+ }
+
static function comment_created($comment) {
try {
if ($comment->state == "published") {