~np~{PLAY(width=>xx,height=>xx,autoplay=>true|false,loop=>false|true)}".tra("URL to Mp3")."{PLAY}~/np~:
".tra("with and height is optional if leaving blank 200 x 55 is used.");
}
function wikiplugin_play($movie, $params) {
extract ($params);
$movie = preg_replace("'<[\/\!]*?[^<>]*?>'si","only URL here! ","$movie");
if (!isset($width)) {
$width = 200; }
if (!isset($height)) {
$height = 55; }
if (!isset($loop)) {
$loop = "no"; }
if (!isset($autoplay)) {
$autoplay = "no"; }
if (!isset($bgcolor)) {
$bgcolor = "white"; }
$asetup = "
".tra("download").": http://".$_SERVER['HTTP_HOST']."/".$movie."";
return $asetup;
}
?>