Beispiel #1
0
function theme_page($title, $content)
{
    $body = theme('menu_top');
    $body .= $content;
    $body .= theme('menu_bottom');
    $body .= theme('google_analytics');
    if (DEBUG_MODE == 'ON') {
        global $dabr_start, $api_time, $services_time, $rate_limit;
        $time = microtime(1) - $dabr_start;
        $body .= '<p>Processed in ' . round($time, 4) . ' seconds (' . round(($time - $api_time - $services_time) / $time * 100) . '% Dabr, ' . round($api_time / $time * 100) . '% Twitter, ' . round($services_time / $time * 100) . '% other services). ' . $rate_limit . '.</p>';
    }
    $meta = '';
    if ($title == 'Login') {
        $title = 'Dabr - mobile Twitter Login';
        $meta = '<meta name="description" content="Free open source alternative to mobile Twitter, bringing you the complete Twitter experience to your phone." />';
    }
    ob_start('ob_gzhandler');
    header('Content-Type: text/html; charset=utf-8');
    echo '<!DOCTYPE html>
				<html>
					<head>
						<meta charset="utf-8" />
						<meta name="viewport" content="width=device-width; initial-scale=1.0;" />
						<title>Dabr - ' . $title . '</title>
						<base href="', BASE_URL, '" />
						' . $meta . theme('css') . '
					</head>
					<body id="thepage">';
    echo "<div id=\"advert\">" . show_advert() . "</div>";
    echo $body;
    if (setting_fetch('colours') == null) {
        //	If the cookies haven't been set, remind the user that they can set how Dabr looks
        echo '<p>Think Dabr looks ugly? <a href="settings">Change the colours!</a></p>';
    }
    echo '		</body>
				</html>';
    exit;
}
Beispiel #2
0
function theme_page($title, $content)
{
    $body .= theme('topmenu');
    $body .= $content;
    $body .= theme('menu_bottom');
    $body .= theme('footer');
    $body .= theme('google_analytics');
    if (DEBUG_MODE == 'ON') {
        global $dabr_start, $api_time, $services_time, $rate_limit;
        $time = microtime(1) - $dabr_start;
        $body .= '<p>Processed in ' . round($time, 4) . ' seconds (' . round(($time - $api_time - $services_time) / $time * 100) . '% Dabr, ' . round($api_time / $time * 100) . '% Twitter, ' . round($services_time / $time * 100) . '% other services)</p>';
    }
    if ($title == 'Login') {
        $title = 'twitUBe - mobile Twitter Login';
        $meta = '<meta name="description" content="alternative to mobile Twitter, bringing you the complete Twitter experience to your phone." />';
    }
    ob_start('ob_gzhandler');
    header('Content-Type: text/html; charset=utf-8');
    echo '<!DOCTYPE html>
				<html>
					<head>
					<link rel="shortcut icon" href="http://twit.basko.ro/favicon.ico" type="image/x-icon" /> 
						<meta charset="utf-8" />
						<meta name="viewport" content="width=device-width; initial-scale=1.0;" />
						<title>twitUBe - ' . $title . '</title>
						<base href="', BASE_URL, '" />
						' . $meta . theme('css') . '
					</head>
					<body id="thepage">';
    echo "<div id=\"advert\">" . show_advert() . "</div>";
    //theme('advert');
    echo $body;
    //[+] user online
    if (user_is_authenticated()) {
        require_once "count.php";
    }
    echo '</body>
	        </html>';
    exit;
    //[+] end
    if (setting_fetch('colours') == null) {
        //	If the cookies haven't been set, remind the user that they can set how Dabr looks
        echo '<p>Think twitUBe looks ugly? <a href="settings">Change the colours!</a></p>';
    }
    echo '		</body>
				</html>';
    exit;
}