Cześć. Dzisiaj wziąłem się za własny plugin, który wyświetla listę grup na stronie głównej. Problem jest taki że nie wyświetla tych grup a forum nie działa.
Proszę o pomoc.
<?
if (!defined('IN_MYBB'))
{
die('Direct initialization of this file is not allowed.');
}
function viewGroups_info()
{
return array(
'name' => 'x',
'description' => 'x',
'website' => 'x',
'author' => 'x',
'authorsite' => 'x',
'version' => 'x',
'compatibility' => '18*'
);
}
// Variables - global
$plugins -> add_hook('index_global', 'viewGroups_index');
//$plugins -> run_hooks('index_global');
// Functions - global
function viewGroups_global()
{
global $db;
$query=$db->query('SELECT * FROM mybb_usergroups');
while($result=$db->fetch_array($query)) {
$group_format = str_replace('{username}', $result['title'], $result['namestyle']);
$groups .= $group_format . ' | ';
}
}
eval("\$viewGroups = \"".$templates->get("viewGroups")."\";");
output_page($viewGroups);
?>
Proszę o pomoc.