Código:
<?php
$plugins->add_hook("parse_message", "plugin_run");
function plugin_info()
{
return array(
"name" => "Primer plugin!",
"description" => "prueba ...",
"website" => "http://www.soportemybb.com",
"author" => "Argoitz",
"authorsite" => "http://www.soportemybb.com",
"version" => "1.0",
"guid" => "",
"compatibility" => "16*"
);
}
function plugin_install()
{
// Probando D:
}
function plugin_activate()
{
// Para activar
}
function plugin_is_activated()
{
global $db;
if($db->table_exists("hola_plugin"))//Para ver si ya esta instalado y no repetir la tabla
{
return true;
}
return false;
}
function plugin_deactivate()
{
// Para desactivar el Pluginn
}
function plugin_uninstall()
{
// Desintalar el plugin? ...
}
function plugin_run()
{
while(preg_match('#\[c\](.*?)\[/c\]#si',$message))
$mensaje = preg_replace('#\[c\](.*?)\[/c\]#si','<center>$1</center>',$mensaje);
return $message
}
?>
Nose si esta bien ,me guie en tu plugin shadow text
¿Esta bien asi?
Es un ejemplo nomas xd