mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Add some additional functions
This commit is contained in:
parent
0d001b95b8
commit
da3fec9d7c
@ -76,6 +76,10 @@
|
||||
{
|
||||
$this->BROWSER_PLATFORM='Unix';
|
||||
}
|
||||
else if (strstr($HTTP_USER_AGENT,'Beos'))
|
||||
{
|
||||
$this->BROWSER_PLATFORM='Beos';
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->BROWSER_PLATFORM='Other';
|
||||
@ -107,6 +111,42 @@
|
||||
return $this->BROWSER_PLATFORM;
|
||||
}
|
||||
|
||||
function is_linux()
|
||||
{
|
||||
if ($this->get_platform()=='Linux')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function is_unix()
|
||||
{
|
||||
if ($this->get_platform()=='Unix')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function is_beos()
|
||||
{
|
||||
if ($this->get_platform()=='Beos')
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function is_mac()
|
||||
{
|
||||
if ($this->get_platform()=='Mac')
|
||||
|
Loading…
Reference in New Issue
Block a user