1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

Fixes #2560 - Chatbox Sidebar

This commit is contained in:
Cameron 2017-04-13 10:25:22 -07:00
parent 2f42b4ec2d
commit 8b1ad719d3

View File

@ -140,4 +140,19 @@ $text .= "
$ns->tablerender(CHBLAN_20, $mes->render().$text);
require_once(e_ADMIN."footer.php");
function admin_chatbox_adminmenu()
{
$mode = varset($_GET['mode'],'main');
$var['main']['text'] = LAN_PREFS;
$var['main']['link'] = e_SELF;
$icon = e107::getParser()->toIcon(e_PLUGIN."chatbox_menu/images/chatbox_32.png");
$caption = $icon."<span>".LAN_PLUGIN_CHATBOX_MENU_NAME."</span>";
e107::getNav()->admin($caption, $mode, $var);
}
?>