コード例 #1
0
ファイル: connect.php プロジェクト: gillima/phplist3
function Info($msg, $noClose = false)
{
    if (!empty($GLOBALS['commandline'])) {
        @ob_end_clean();
        print "\n" . strip_tags($msg) . "\n";
        @ob_start();
    } else {
        ## generate some ID for the info div
        $id = substr(md5($msg), 0, 15);
        $pageinfo = new pageInfo($id);
        $pageinfo->setContent('<p>' . $msg . '</p>');
        if ($noClose && method_exists($pageinfo, 'suppressHide')) {
            $pageinfo->suppressHide();
        }
        print $pageinfo->show();
    }
}