Changeset 37315
- Timestamp:
- 04/27/2016 02:51:31 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r37276 r37315 694 694 * 695 695 * @param int $user_id User ID 696 * @param int $expiration Cookie expiration in seconds696 * @param int $expiration The time the cookie expires as a UNIX timestamp. 697 697 * @param string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in 698 698 * @param string $token User's session token to use for this cookie … … 727 727 * @param string $cookie Authentication cookie. 728 728 * @param int $user_id User ID. 729 * @param int $expiration Authentication cookie expiration in seconds.729 * @param int $expiration The time the cookie expires as a UNIX timestamp. 730 730 * @param string $scheme Cookie scheme used. Accepts 'auth', 'secure_auth', or 'logged_in'. 731 731 * @param string $token User's session token used. … … 874 874 * 875 875 * @param string $auth_cookie Authentication cookie. 876 * @param int $expire Login grace period in seconds. Default 43,200 seconds, or 12 hours. 877 * @param int $expiration Duration in seconds the authentication cookie should be valid. 878 * Default 1,209,600 seconds, or 14 days. 876 * @param int $expire The time the login grace period expires as a UNIX timestamp. 877 * Default is 12 hours past the cookie's expiration time. 878 * @param int $expiration The time when the authentication cookie expires as a UNIX timestamp. 879 * Default is 14 days from now. 879 880 * @param int $user_id User ID. 880 881 * @param string $scheme Authentication scheme. Values include 'auth', 'secure_auth', or 'logged_in'. … … 883 884 884 885 /** 885 * Fires immediately before the secureauthentication cookie is set.886 * Fires immediately before the logged-in authentication cookie is set. 886 887 * 887 888 * @since 2.6.0 888 889 * 889 890 * @param string $logged_in_cookie The logged-in cookie. 890 * @param int $expire Login grace period in seconds. Default 43,200 seconds, or 12 hours. 891 * @param int $expiration Duration in seconds the authentication cookie should be valid. 892 * Default 1,209,600 seconds, or 14 days. 891 * @param int $expire The time the login grace period expires as a UNIX timestamp. 892 * Default is 12 hours past the cookie's expiration time. 893 * @param int $expiration The time when the logged-in authentication cookie expires as a UNIX timestamp. 894 * Default is 14 days from now. 893 895 * @param int $user_id User ID. 894 896 * @param string $scheme Authentication scheme. Default 'logged_in'.
Note: See TracChangeset
for help on using the changeset viewer.