delete from x with thread_id when thread is deleted

Status
This content is read-only, or is not open for further replies.

Robert9

Guest
offline
I have a table x; it has a field thread_id

if thread 212 is deleted (or merged?!), I want to delete the column in x where thread_id is 212

i found entity_post_delete, but no entity_thread_delete


i found a listener with something like:

Code:

Code:
    public static function threadEntityPostDelete(\XF\Mvc\Entity\Entity $entity)
    {
        $entity->db()->delete('xf_r9_example', 'thread_id = ?', $entity->thread_id);
    }

Do we have another example to delete something?
resource and...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom