1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-23 08:15:39 +01:00

45 lines
1004 B
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
2009-11-12 14:30:07 +00:00
* e107 website system
*
* Copyright (C) 2008-2013 e107 Inc (e107.org)
2009-11-12 14:30:07 +00:00
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* $URL$
* $Id$
2009-11-12 14:30:07 +00:00
*/
2006-12-02 04:36:16 +00:00
if (!defined('e107_INIT')) { exit; }
$mes = e107::getMessage();
2006-12-02 04:36:16 +00:00
$buts = "";
$newarray = e107::getNav()->adminLinks('core');
2006-12-02 04:36:16 +00:00
while (list($key, $funcinfo) = each($newarray))
{
2012-12-03 02:27:19 -08:00
$buts .= e107::getNav()->renderAdminButton($funcinfo[0], $funcinfo[1], $funcinfo[2], $funcinfo[3], $funcinfo[6], "classis");
2006-12-02 04:36:16 +00:00
}
if($buts != "")
{
$text = "<div style='text-align:center'>
<table class='table'>";
2006-12-02 04:36:16 +00:00
$text .= $buts;
$text .= render_clean();
$text .= "</table></div>";
$ns->tablerender(ADLAN_47." ".ADMINNAME, $mes->render().$text);
2006-12-02 04:36:16 +00:00
}
$text = "<div style='text-align:center'>
<table class='table'>";
2006-12-02 04:36:16 +00:00
$text .= e107::getNav()->pluginLinks(E_32_PLUGMANAGER, "classis");
2006-12-02 04:36:16 +00:00
$text .= render_clean();
$text .= "</table></div>";
$ns->tablerender(ADLAN_CL_7, $text,'infopanel');
2006-12-02 04:36:16 +00:00
?>