Delete Notice_to_status when a notice is deleted

This commit is contained in:
Evan Prodromou 2010-09-04 23:52:26 -04:00
parent e9e06879bb
commit 6c7262c8ca
1 changed files with 17 additions and 0 deletions

View File

@ -411,4 +411,21 @@ class TwitterBridgePlugin extends Plugin
return true;
}
/**
* If a notice gets deleted, remove the Notice_to_status mapping
*
* @param Notice $notice The notice getting deleted
*
* @return boolean hook value
*/
function onNoticeDeleteRelated($notice)
{
$n2s = Notice_to_status::staticGet('notice_id', $notice->id);
if (!empty($n2s)) {
$n2s->delete();
}
return true;
}
}