19.05.2008, 20:10
Murphy schrieb:Du erstellst zwar ein Array, doch du verarbeitest es nicht. Ist das Absicht?PHP-Code:<?php
/**
* Copryright by Murphy 2008, All Rights Reserved
*/
$plugins->add_hook("portal_start", "birthday_portal");
function birthday_portal_info()
{
return array(
"name" => "Birthday Portal",
"description" => "Mit diesem Plugin wird eine Box im Portal hinzugefügt. In der Box werden die heutigen Geburtstage angezeigt.",
"website" => "http://mybboard.de/",
"author" => "Murphy",
"version" => "1.0 Beta",
);
}
// Plugin aktivieren
function birthday_portal_activate()
{
$boardmsg_template = array(
"title" => 'portal_birthday',
"template" => "<table border=\"0\" cellspacing=\"{\$theme[\'borderwidth\']}\" cellpadding=\"{\$theme[\'tablespace\']}\" class=\"tborder\">
<tr>
<td class=\"thead\"><strong>Test</strong></td>
</tr>
<tr>
<td class=\"trow1\">
1
</td>
</tr>
</table><br />",
"sid" => -1,
"version" => 120,
"status" => '',
"dateline" => 1134703642,
);
}
// Plugin deaktivieren
function birthday_portal_deactivate()
{
}
?>
Dave schrieb:Mehr zum Plugin System und den Hooks von MyBB kannst du hier finden:Siehe auch: http://www.mybbcoder.info/wiki/informati...ugins.html
MyBB Wiki