Log in

View Full Version : Thread moderation


SnakeV
02-16-2012, 08:12 PM
Hi

I'm using hook: postdata_presave to sent to thread awaiting moderation when certain criteria is matched.

For sent the post to moderation i use this and works fine: $this->set('visible', 0); but i want to send to moderation the thread enterely and not only the specific post.

I tried $thread->set('visible', 0); but it do not work, which would be the correct code?

Thanks

kh99
02-16-2012, 10:56 PM
You need to create a thread datamanager to change the thread. Try this:

$thread =& datamanager_init('Thread', $this->registry, ERRTYPE_SILENT, 'threadpost');
$thread->set_existing($this->info['thread']);
$thread->set('visible', 0);
$thread->save();