mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 10:02:12 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7512 201d5d3c-b55e-5fd7-737f-ddc643e51545
14 lines
264 B
PHP
14 lines
264 B
PHP
<?php
|
|
|
|
class Mobile {
|
|
function isFromMobilePhone() {
|
|
if(Context::get('full_browse') || $_COOKIE["FullBrowse"])
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return Context::get('mobile') || preg_match('/(iPod|iPhone|Android|SCH\-M[0-9]+)/',$_SERVER['HTTP_USER_AGENT']);
|
|
}
|
|
}
|
|
|
|
?>
|