You are here

function _mobile_switch_block_url in Mobile Switch Block 7

Same name and namespace in other branches
  1. 6 mobile_switch_block.module \_mobile_switch_block_url()
  2. 7.2 mobile_switch_block.module \_mobile_switch_block_url()

Get the mobile switch URL.

Parameters

$mode: A string with the possible values:

  • standard
  • mobile

$manual: A boolean value.

See also

theme_mobile_switch_block()

1 call to _mobile_switch_block_url()
template_preprocess_mobile_switch_block_switch_content in ./mobile_switch_block.module
Processes variables for mobile-switch-block-switch-content.tpl.php.

File

./mobile_switch_block.module, line 359
Extends the Mobile Switch module with an theme switch block.

Code

function _mobile_switch_block_url($mode, $manual = FALSE) {
  $options['query']['mobile_switch'] = $manual ? $mode : 0;
  $options['absolute'] = TRUE;
  return url(current_path(), $options);
}