
12-04-2012, 07:39 PM
|
|
|
Join Date: Jun 2009
Posts: 535
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by djbaxter
I can no longer recall the source either but here's what I have, adapted for vBulletin 4.x (up to and including 4.2.0 PL3).
1. You'll need an SFS API key. Replace "1234567890abcd" in last line below with valid API.
2., AdminCP >> Plugins and Products >> Add New Plugin
3. Details for plugin
Product: vBulletin
Hook Location: useradmin_edit_column1 (or useradmin_edit_column2 if you prefer)
Title: Submit to StopForumSpam.com
Execution Order: 5
Plugin PHP Code:
Code:
if (!is_member_of($user['usergroupid'], 6)) // dont ban admin account
{
print_table_break('', $INNERTABLEWIDTH);
print_table_header("Submit to StopForumSpam");
print_label_row('Submit these details to www.stopforumspam.com ban list<BR><table><tr><td>Username:</td><td><input type="text" name="username" size="30" value="'.
$user['username'] . '"></td></tr>
<tr><td>Email:</td><td><input type="text" name="email" size="30" value="' . $user['email'] . '"></td></tr><tr><td>IP: </td>
<td><input type="text" name="ip_addr" value="' .$user['ipaddress'] . '"></td></tr></table>
<input name="api_key" type="hidden" value="1234567890abcd"><input onclick="this.form.action=\'http://www.stopforumspam.com/add.php\';this.form.submit()" type="button" class="button" value="' . $vbphrase['submit'] . '"/>');
}
|
Thanks!! :up:
|