You are here

function variable_mobile_current_realm in Variable Extra 7

Get current realm key for mobile variable.

1 call to variable_mobile_current_realm()
VariableMobileRealmController::getRequestKey in variable_mobile/variable_mobile.class.inc
Implementation of VariableRealmControllerInterface::getRequestKey().

File

variable_mobile/variable_mobile.module, line 41
Internationalization (i18n) package. Multilingual variables API.

Code

function variable_mobile_current_realm() {
  return variable_mobile_check_browser() ? 'mobile' : 'standard';
}