PDA

View Full Version : Invoke hook on deletion of post/thread


robertw795
04-25-2016, 08:47 AM
I've been working on an image gallery that takes images posted subforums and displays them all in a custom gallery widget. In order to do this I use the PHP hooks system.

For inserting and updating I invoked my hooks in the createcontent.php file. Pass along some data and manipulate it to do my database inserts.

Now I'm looking into deleting, the html source tells me that upon deletion of a post/thread, a POST request is done to the ajax api. In order to find where this is handled I added a bunch of break points to the ajax source files. None of these is triggered when I delete a post though.

Could someone tell me in which source file this is handled?

Replicant
04-25-2016, 11:18 AM
The deleteNodes function is in /core/vb/library/node.php.

robertw795
04-25-2016, 11:24 AM
The deleteNodes function is in /core/vb/library/node.php.

Thanks man! You never fail to come through.