Changeset 41162 for trunk/src/wp-includes/class-wp-session-tokens.php
- Timestamp:
- 07/27/2017 12:40:27 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-session-tokens.php
r40998 r41162 19 19 * 20 20 * @since 4.0.0 21 * @access protected22 21 * @var int User ID. 23 22 */ … … 42 41 * 43 42 * @since 4.0.0 44 * @access public45 43 * @static 46 44 * … … 65 63 * 66 64 * @since 4.0.0 67 * @access private68 65 * 69 66 * @param string $token Session token to hash. … … 83 80 * 84 81 * @since 4.0.0 85 * @access public86 82 * 87 83 * @param string $token Session token … … 99 95 * 100 96 * @since 4.0.0 101 * @access public102 97 * 103 98 * @param string $token Token to verify. … … 121 116 * 122 117 * @since 4.0.0 123 * @access public124 118 * 125 119 * @param int $expiration Session expiration timestamp. … … 165 159 * 166 160 * @since 4.0.0 167 * @access public168 161 * 169 162 * @param string $token Session token to update. … … 179 172 * 180 173 * @since 4.0.0 181 * @access public182 174 * 183 175 * @param string $token Session token to destroy. … … 193 185 * 194 186 * @since 4.0.0 195 * @access public196 187 * 197 188 * @param string $token_to_keep Session token to keep. … … 212 203 * 213 204 * @since 4.0.0 214 * @access protected215 205 * 216 206 * @param array $session Session to check. … … 225 215 * 226 216 * @since 4.0.0 227 * @access public228 217 */ 229 218 final public function destroy_all() { … … 235 224 * 236 225 * @since 4.0.0 237 * @access public238 226 * @static 239 227 */ … … 248 236 * 249 237 * @since 4.0.0 250 * @access public251 238 * 252 239 * @return array Sessions of a user. … … 260 247 * 261 248 * @since 4.0.0 262 * @access protected263 249 * 264 250 * @return array Sessions of a user, keyed by verifier. … … 270 256 * 271 257 * @since 4.0.0 272 * @access protected273 258 * 274 259 * @param string $verifier Verifier of the session to retrieve. … … 283 268 * 284 269 * @since 4.0.0 285 * @access protected286 270 * 287 271 * @param string $verifier Verifier of the session to update. … … 295 279 * 296 280 * @since 4.0.0 297 * @access protected298 281 * 299 282 * @param string $verifier Verifier of the session to keep. … … 305 288 * 306 289 * @since 4.0.0 307 * @access protected308 290 */ 309 291 abstract protected function destroy_all_sessions(); … … 313 295 * 314 296 * @since 4.0.0 315 * @access public316 297 * @static 317 298 */
Note: See TracChangeset
for help on using the changeset viewer.