Wstawię jak mam teraz to zrobione.
legenda.php
<?php
define('IN_MYBB', 1);
require "./global.php";
$plugins->run_hooks("grupy");
add_breadcrumb("Legenda grup", "legenda.php");
eval("\$podstr = \"".$templates->get("legenda")."\";");
output_page($podstr);
?>
Szablon o nazwie
legenda:
</head>
<body>
{$header}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;">
<tr>
<td class="thead" colspan="2">
LEGENDA GRUP
</td>
</tr>
<tr>
<td class="trow2 post_content ">
{$ugl_userlegend}
</td>
</tr>
</table>
{$footer}
</body>
</html>
inc/plugins/
grouplegend.php
// Carligul de legatura cu forumul tau
$plugins->add_hook("index_start", "grouplegend_show");
$plugins->add_hook("grupy", "grouplegend_show");
// Functie pentru intoarcerea informatiilor despre modificare
Szablon:
portal_whosonline:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$lang->online}</strong></td>
</tr>
<tr>
<td class="trow1">
<span class="smalltext">
{$lang->online_users}<br /><strong>»</strong> {$lang->online_counts}<br />{$onlinemembers}
<br />
<a href="{$mybb->settings['bburl']}/legenda.php">Sprawdź co oznaczają rangi</a>
</span>
</td>
</tr>
</table>
<br />