On this page
function user_cookie_save
user_cookie_save(array $values)
Saves visitor information as a cookie so it can be reused.
Parameters
array $values: An array of key/value pairs to be saved into a cookie.
File
- core/modules/user/user.module, line 1287
- Enables the user registration and login system.
Code
function user_cookie_save(array $values) {
foreach ($values as $field => $value) {
// Set cookie for 365 days.
setrawcookie('Drupal.visitor.' . $field, rawurlencode($value), REQUEST_TIME + 31536000, '/');
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!user!user.module/function/user_cookie_save/8.1.x