mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7518 201d5d3c-b55e-5fd7-737f-ddc643e51545
39 lines
833 B
PHP
39 lines
833 B
PHP
<?php
|
|
|
|
class Mobile {
|
|
var $ismobile = null;
|
|
|
|
function &getInstance() {
|
|
static $theInstance;
|
|
if(!isset($theInstance)) $theInstance = new Mobile();
|
|
return $theInstance;
|
|
}
|
|
|
|
function isFromMobilePhone() {
|
|
$oMobile =& Mobile::getInstance();
|
|
return $oMobile->_isFromMobilePhone();
|
|
}
|
|
|
|
function _isFromMobilePhone() {
|
|
if(isset($this->ismobile)) return $this->ismobile;
|
|
$db_info = Context::getDBInfo();
|
|
if($db_info->use_mobile_view != "Y" || Context::get('full_browse') || $_COOKIE["FullBrowse"])
|
|
{
|
|
$this->ismobile = false;
|
|
}
|
|
else
|
|
{
|
|
$this->ismobile = Context::get('mobile') || preg_match('/(iPod|iPhone|Android|SCH\-M[0-9]+)/',$_SERVER['HTTP_USER_AGENT']);
|
|
}
|
|
|
|
return $this->ismobile;
|
|
}
|
|
|
|
function setMobile($ismobile)
|
|
{
|
|
$oMobile =& Mobile::getInstance();
|
|
$oMobile->ismobile = $ismobile;
|
|
}
|
|
}
|
|
|
|
?>
|