コード例 #1
0
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="keywords" content="siri,port,siri port,full,full siri port,jimmykane9,free full siri port,free,free port,siri iphone 4,iphone 4,iphone 3gs" />
        <meta name="description" content="Free and opensource Siri Proxy server by @JimmyKane9. Website by @WouterDS." />
        <title>The Three Little Pigs :: Siri Proxy | <?php 
echo $pMgr->getTitle();
?>
</title>
        <link rel="stylesheet" type="text/css" media="screen" href="design/css/style.css" />
        <link rel="shortcut icon" href="design/img/favicon.ico" />
        <script src="http://code.jquery.com/jquery-latest.js"></script>
    </head>
    <body>
        <div id="top">
            <div class="centerContainer">
                <?php 
echo $pMgr->navigation();
?>

                <div id="header">
                    <h1>The Three Little Pigs - A Siri Server That Needs To Be Fed</h1>
                </div>
            </div>
        </div>
        <div id="middle">
            <div class="centerContainer">
                <?php 
echo $pMgr->getPageContent();
?>
            </div>
            <div id="fixFooter"></div>
        </div>
コード例 #2
0
 include_once "inc/config.inc.php";
 include_once "inc/Admin.class.php";
 include_once "inc/Client.class.php";
 include_once "inc/Layout.class.php";
 include_once "inc/functions.inc.php";
 include_once "inc/connection.inc.php";
 include_once "inc/Statistics.class.php";
 include_once "inc/PageManager.class.php";
 include_once "inc/Announcement.class.php";
 include_once "inc/WebsiteProperty.class.php";
 /* Build content
  ******************************************************************/
 $pMgr = new PageManager("pages", "page");
 $websiteProperty = new WebsiteProperty();
 $ban = new Ban();
 $layout = new Layout($websiteProperty->getProperty('website_title') . ' :: ' . $pMgr->getTitle(), $pMgr->navigation());
 echo $layout->buildTop();
 if ($ban->checkBan()) {
     echo '<p class="notification red">Your IP has been banned on ' . $ban->checkBan("dtime") . '<br />Reason: ' . $ban->checkBan("reason") . '</p>';
 } else {
     if ($_GET['page'] == 'admin') {
         $pMgr->getPageContent();
     } else {
         $announcement = new Announcement();
         $dataArr = $announcement->getAnnouncements();
         if ($dataArr !== false) {
             foreach ($dataArr as $data) {
                 echo '<p class="notification ' . strtolower($data['announcement_type']) . '">[' . $data['date_added'] . '] ' . stripslashes($data['announcement_text']) . '</p>';
             }
         }
         echo ads();