function _session_test_id_from_cookie
Menu callback: print the current session ID as read from the cookie.
1 string reference to '_session_test_id_from_cookie'
- session_test_menu in drupal-7.x/
modules/ simpletest/ tests/ session_test.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ session_test.module, line 120
Código
function _session_test_id_from_cookie() {
return 'session_id:' . $_COOKIE[session_name()] . "\n";
}