PDA

View Full Version : Which hook to moderate posts when they are created?


ThorstenA
08-24-2011, 11:19 PM
I want to moderate posts that have special keywords in it.

#1 Which hook can I use for this?
#2 How can I tell vbulletin to moderate this post?

Thanks so much for any ideas.

kh99
08-25-2011, 12:21 AM
You can use hook newpost_process, and if you want to set the post to moderated, do this:

$dataman->set('visible', 0);
$post['visible'] = 0;