<?php
if(!defined('IN_MYBB')){
	die('Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.');
}

function xtlinkdirectory_info(){
	return array(
		'name'			=> 'XThreads Link Directory',
		'description'	=> 'XThreads Link Directory',
		'website'		=> 'http://mybbhacks.zingaburga.com',
		'author'		=> 'MyBB Hacks Community',
		'authorsite'	=> 'http://mybbhacks.zingaburga.com',
		'version'		=> '1.0',
		'compatibility' => '1*',
		'guid'        	=> ''
	);
}

function xtlinkdirectory_activate(){
}

function xtlinkdirectory_deactivate(){
}

$plugins->add_hook('newthread_do_newthread_end', 'xtlinkdirectory_run');
function xtlinkdirectory_run(){
	if(in_array($GLOBALS['fid'], array(21,22,23,24))){
		redirect(get_forum_link($GLOBALS['fid']), 'Your link has been added successfully. You will be reidrected to the Link Directory Index');
	}
}
?>