You are here

function _lhtest_delete_all_cookies in Login History 7

Menu callback to delete some cookies. And talk about it.

1 string reference to '_lhtest_delete_all_cookies'
lhtest_menu in tests/lhtest/lhtest.module
Implements hook_menu().

File

tests/lhtest/lhtest.module, line 20

Code

function _lhtest_delete_all_cookies() {
  $output = '';
  if (isset($_SERVER['HTTP_COOKIE'])) {
    $cookies = explode(';', $_SERVER['HTTP_COOKIE']);
    foreach ($cookies as $cookie) {
      $parts = explode('=', $cookie);
      $name = trim($parts[0]);
      $output .= "<br/> unsetting {$name} <br/>";
      setcookie($name, '', time() - 3600);
      setcookie($name, '', time() - 3600, '/');
    }
  }
  return $output;
}