mt_browscap.module in Mobile Tools 6
File
contrib/mt_browscap/mt_browscap.module
View source
<?php
function mt_browscap_is_mobile_device() {
$info = browscap_get_browser();
if ($info['ismobiledevice']) {
$type = 'mobile';
}
else {
$type = 'desktop';
}
$groups = mt_browscap_device_groups();
$group = '';
if (in_array($info['browser'], $groups)) {
$group = array_search($info['browser'], $groups);
}
return array(
'type' => $type,
'group' => $group,
);
}
function mt_browscap_device_groups() {
return array(
'iphone' => 'iPhone',
'ipod' => 'iPod',
'android' => 'Android',
'opera_mini' => 'Opera Mini',
'blackberry' => 'BlackBerry',
);
}