You are here

function mobile_tools_mobile_tools_device_groups in Mobile Tools 7.2

Implements hook_mobile_tools_device_groups().

File

./mobile_tools.module, line 387
Functionality to ease the creation of mixed device environments.

Code

function mobile_tools_mobile_tools_device_groups() {
  return array(
    'iphone' => 'iPhone',
    'ipod' => 'iPod',
    'ipad' => 'iPad',
    'android' => 'Android',
    'operamini' => 'Opera Mini',
    'blackberry' => 'BlackBerry',
  );
}