Log in

View Full Version : post thread class


theilya2
12-17-2012, 01:05 PM
Hello,
I have points mod in my site.
I want to remove points if user post thread in X forum.
I search the class of the thread post and i dont find him...

Where the post thread function is?

tnx!

kh99
12-17-2012, 02:18 PM
I think you can use hook newpost_complete, and check for $type == 'thread' (if $type == 'reply' it's a reply and not starting a thread). This is in includes/functions_newpost.php around line 690 (the end of function build_new_post()).

theilya2
12-17-2012, 04:04 PM
I try to add this:

if ($post['folderid'] == 12)
{
$userid = $vbulletin->userinfo['userid'];
$qpoints = mysql_query("SELECT credits FROM user WHERE userid='$userid'");
$rowpoints = mysql_fetch_assoc($qpoints);
$points = $rowpoints[credits] - 2000;
mysql_query("UPDATE user SET credits='$points' WHERE userid='$userid'");
}


After this:

$post['disablesmilies'] = intval($post['disablesmilies']);
$post['enablesmilies'] = ($post['disablesmilies'] ? 0 : 1);
$post['folderid'] = intval($post['folderid']);


And it's not work,
why?

kh99
12-17-2012, 04:42 PM
To be honest, I don't know what 'folderid' is for (maybe for when you select a subscription folder?). If you want to check for a forum id, then I think what you want is to check $foruminfo['forumid'].

Edit: one other thing - that location is pretty early in the function, and there could be an error or the user could be previewing the thread, so you might not want to subtract your points there. If you want to do it only when the thread or reply is posted then you'd want to do it after $dataman->save() is called.

theilya2
12-17-2012, 06:16 PM
Success!

tnx!