Example #1
0
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
    <?php 
require_once __DIR__ . '/_header.php';
?>

    <body>
        <header style="background-color: #ffffff">
            <div align="center">
                <?php 
if (Util::runsOnLocalhost()) {
    ?>
                    <a href="http://ubirimi.lan"><img src="/img/site/bg.logo.png" /></a>
                <?php 
} else {
    ?>
                    <a href="https://www.ubirimi.com"><img src="/img/site/bg.logo.png" /></a>
                <?php 
}
?>
            </div>
        </header>

        <div>
            <?php 
require_once __DIR__ . '/' . $content;
Example #2
0
 public static function getHttpHost()
 {
     $httpHOST = $_SERVER['HTTP_HOST'];
     if (Util::runsOnLocalhost()) {
         $urlPrefix = 'http://';
     } else {
         if (!empty($_SERVER['HTTPS'])) {
             $urlPrefix = 'https://';
         } else {
             $urlPrefix = 'http://';
         }
     }
     if (isset($urlData['scheme'])) {
         $urlPrefix = '';
     }
     $httpHOST = $urlPrefix . $httpHOST;
     return $httpHOST;
 }