View file moduls/header.php

File size: 2.7Kb
<?php
ERROR_REPORTING(0);
/* una done spoil my phone screen make una contribute money buy me new 1 o.. *angry*.
- coded : naijahtml.tk
- by: hack3i
- when: yesternight
*/
header('Content-type: text/html; charset=UTF-8');
if(preg_match('/(apple|iphone|ipod)/i', $_SERVER['HTTP_USER_AGENT']) && preg_match('/mobile/i', $_SERVER['HTTP_USER_AGENT']))

$browser   = "mobile";


// Other mobile browsers render as mobile

if(preg_match('/(blackberry|configuration\/cldc|hp |hp-|htc |htc_|htc-|iemobile|kindle|midp|mmp|motorola|mobile|nokia|opera mini|opera mobi|palm|palmos|pocket|portalmmm|ppc;|smartphone|sonyericsson|sqh|spv|symbian|treo|up.browser|up.link|vodafone|windows ce|xda |xda_)/i', $_SERVER['HTTP_USER_AGENT']))

$browser   = "mobile";

// Wap browser
if(((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'text/vnd.wap.wml') > 0) || (strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml')>0)) || ((isset($_SERVER['HTTP_X_WAP_PROFILE']) || isset($_SERVER['HTTP_PROFILE']))))

$browser = mobile;



// Shortend user agents

if(in_array(strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,3)),array('lg '=>'lg ','lg-'=>'lg-','lg_'=>'lg_','lge'=>'lge')))
$browser = "mobile";
// More shortend user agents
if(in_array(strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4)),array('acs-'=>'acs-','amoi'=>'amoi','doco'=>'doco','eric'=>'eric','huaw'=>'huaw','lct_'=>'lct_','leno'=>'leno','mobi'=>'mobi','mot-'=>'mot-','moto'=>'moto','nec-'=>'nec-','phil'=>'phil','sams'=>'sams','sch-'=>'sch-','shar'=>'shar','sie-'=>'sie-','wap_'=>'wap_','zte-'=>'zte-')))
$browser   = "mobile";
// Render mobile site for mobile search engines

if(preg_match('/Googlebot-Mobile/i', $_SERVER['HTTP_USER_AGENT']) || preg_match('/YahooSeeker\/M1A1-R2D2/i', $_SERVER['HTTP_USER_AGENT']))
$browser   = "mobile";
if($browser=='mobile')
{ $logo="<img src='http://joyloaded.com/images/logo.png' alt='joyloaded.com' width='90%' height='100%' border='0' />";
} else { $logo="<img src='http://joyloaded.com/images/logo.png' alt='joyloaded.com' width='90%' height='100%' border='0' />";}
echo '<?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" /><meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/><head>';
echo'<link rel="alternate" type="application/rss+xml" title="' . $config->title . ' | Tweak Updates" href="' . $config->url . '/feeds" />';
include "css.php";
echo '</head>';
echo"<div id='header'><div class='shell'><center>$logo</center></div></div>";
?>