function user_is_logged_in

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/user/user.module \user_is_logged_in()
1 string reference to 'user_is_logged_in'
user_menu in drupal-6.x/modules/user/user.module
Implementation of hook_menu().

Archivo

drupal-6.x/modules/user/user.module, line 883
Enables the user registration and login system.

Código

function user_is_logged_in() {
  return (bool) $GLOBALS['user']->uid;
}