<?php
/*****************************************************************************
 *   MyPlaza for MyBB 1.2 ~ By ZiNgA BuRgA, 2007-2008
 *   Plugin by Dan-Da-Man ~ http://brawlfriendcodes.com
 *****************************************************************************/

function theme_info() {
	return array(
		"name"		=> "Use Forum Theme: Green Jungle",
		"description"	=> "=)",
		"website"		=> "http://brawlfriendcodes.com",
		"author"		=> "Dan-Da-Man",
		"authorsite"	=> "http://brawlfriendcodes.com",
		"version"		=> "1.0",
	);
}

function theme_activate() {
	myplaza_add_item(array(
		"name"			=> 'Forum Theme: ___',
		"description"	=> 'Change your accounts forum theme to ___',
		"cost"			=> 750,
	));
}

function theme_deactivate() {
	myplaza_remove_module_items();
}

function theme_run($item) {
	global $mybb;
	db_update('users', array('style' => 4), 'uid='.intval($mybb->user['uid']));
	return true;
}
?>