Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: set_auth_cookie

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
669           $scheme = 'secure_auth';
670      } else {
671           $auth_cookie_name = AUTH_COOKIE;
672           $scheme = 'auth';
673      }
674
675      $auth_cookie = wp_generate_auth_cookie($user_id, $expiration, $scheme);
676      $logged_in_cookie = wp_generate_auth_cookie($user_id, $expiration, 'logged_in');
677
678      do_action('set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme);
679      do_action('set_logged_in_cookie', $logged_in_cookie, $expire, $expiration, $user_id, 'logged_in');
680
681      setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
682      setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
683      setcookie(LOGGED_IN_COOKIE, $logged_in_cookie, $expire, COOKIEPATH, COOKIE_DOMAIN, $secure_logged_in_cookie, true);
684      if ( COOKIEPATH != SITECOOKIEPATH )
685           setcookie(LOGGED_IN_COOKIE, $logged_in_cookie, $expire, SITECOOKIEPATH, COOKIE_DOMAIN, $secure_logged_in_cookie, true);
686 }
687 endif;