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:
Do we have another example to delete something?
resource and thread is one; i will check it.
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:
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 thread is one; i will check it.