You are here

function mobile_switch_administer_advanced in Mobile Switch 7.2

Access callback.

See also

mobile_switch_menu()

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

File

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

Code

function mobile_switch_administer_advanced() {
  $mode = mobile_switch_get_operating_mode();
  if (mobile_switch_administer() && ($mode === 'redirect' || $mode === 'themeswitch' || $mode === 'detectonly')) {
    return TRUE;
  }
  return FALSE;
}