You are here

function persistent_login_boot in Persistent Login 6

Same name and namespace in other branches
  1. 7 persistent_login.module \persistent_login_boot()

Implementation of hook_boot(). Before a cached page is served, perform a Persistent Login if appropriate. Persistent Login must operate during boot because if page caching is enabled, other hooks are never invoked unless the user is already logged in.

File

./persistent_login.module, line 38
Provide a "Remember Me" checkbox in the login form.

Code

function persistent_login_boot() {
  _persistent_login_check();
}