You are here

function mobile_switch_administer_development in Mobile Switch 7.2

Access callback.

See also

mobile_switch_menu()

1 string reference to 'mobile_switch_administer_development'
mobile_switch_menu in ./mobile_switch.module
Implements hook_menu().

File

./mobile_switch.module, line 378
Provides various functionalities to develop mobile ready websites.

Code

function mobile_switch_administer_development() {
  $mode = mobile_switch_get_operating_mode();
  if (mobile_switch_administer() && $mode != 'none') {
    return TRUE;
  }
  return FALSE;
}