Exemple #1
0
function managePage($text, $onload = '')
{
    $adminbar = adminBar();
    $body = <<<EOF
\t<body{$onload}>
\t\t<div class="adminbar">
\t\t\t{$adminbar}
\t\t</div>
\t\t<div class="logo">
EOF;
    $body .= TINYIB_LOGO . TINYIB_BOARDDESC . <<<EOF
\t\t</div>
\t\t<hr width="90%" size="1">
\t\t<div class="replymode">Manage mode</div>
\t\t{$text}
\t\t<hr>
EOF;
    return pageHeader() . $body . pageFooter();
}
Exemple #2
0
function managePage($text, $onload = '')
{
    global $tinyib;
    $adminbar = adminBar();
    $body = <<<EOF
\t<body{$onload}>
\t\t<div class="adminbar">
\t\t\t{$adminbar}
\t\t</div>
\t\t<div class="logo">
\t\t\t{$tinyib['logo']}
\t\t\t{$tinyib['boarddescription']}
\t\t</div>
\t\t<hr width="90%" size="1">
\t\t<div class="replymode">Manage mode</div>
\t\t{$text}
\t\t<hr>
EOF;
    return pageHeader() . $body . pageFooter();
}