| 1 |
<?php |
<?php |
| 2 |
// $Id: devel.module,v 1.320 2009/02/12 03:49:36 weitzman Exp $ |
// $Id: devel.module,v 1.321 2009/04/01 01:58:57 weitzman Exp $ |
| 3 |
|
|
| 4 |
// This module holds functions useful for Drupal development. |
// This module holds functions useful for Drupal development. |
| 5 |
// Please contribute! |
// Please contribute! |
| 1233 |
*/ |
*/ |
| 1234 |
function devel_session() { |
function devel_session() { |
| 1235 |
global $user; |
global $user; |
| 1236 |
$output = kprint_r($_SESSION, TRUE); |
$output = kprint_r(drupal_get_session(), TRUE); |
| 1237 |
$headers = array(t('Session name'), t('Session ID')); |
$headers = array(t('Session name'), t('Session ID')); |
| 1238 |
$output .= theme('table', $headers, array(array(session_name(), session_id()))); |
$output .= theme('table', $headers, array(array(session_name(), session_id()))); |
| 1239 |
return $output; |
return $output; |