You are here

function _mobile_switch_block_set_cookie in Mobile Switch Block 7.2

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

Set the cookie value.

Parameters

$value: The string contains one of the possible values:

  • standard
  • mobile

See also

mobile_switch_block_mobile_switch_boot_alter()

1 call to _mobile_switch_block_set_cookie()
mobile_switch_block_mobile_switch_boot_alter in ./mobile_switch_block.module
Implements hook_mobile_switch_mobile_boot_alter().

File

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

Code

function _mobile_switch_block_set_cookie($value) {
  setrawcookie('mobile_switch_mode', $value, REQUEST_TIME + variable_get('mobile_switch_block_cookie_expire', 31536000), '/');
}