<?php
/*
Plugin gmaps BBCode
(c) 2009 by ChaiMe NetWork
Website: http://www.chaime.net
*/

$plugins->add_hook("parse_message", "gmaps");

function gmaps_info()
{
	return array(
		"name"			=> "gmaps BBCode",
		"description"	=> "Adds the tag ([gmaps][/gmaps]) to your forums to insert Google Maps into posts.",
		"website"		=> "http://www.chaime.net",
		"author"		=> "ChaiMe NetWork",
		"authorsite"	=> "http://www.chaime.net",
		"version"		=> "1.0",
//		'guid'          => '411cb1e616ccd0cf41a82183e2e03e4e'
	);
}

function gmaps_activate()
{
}

function gmaps_deactivate()
{
}

function gmaps($message)
{

$message = preg_replace("#\[gmaps\](.*?)\[/gmaps\]#", "<iframe width=\"640\" height=\"480\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"$1&output=embed&s=AARTsJqzARj-Z8VnW5pkPMLMmZbqrJcYpw\"></iframe></br>Embed Google Maps into MyBB by <a href=\"http://www.chaime.net\" target=\"_blank\">ChaiMe.net</a>", $message);

	return $message;
}
?>