Changeset 29455
- Timestamp:
- 08/09/2014 07:31:35 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r29424 r29455 26 26 * 27 27 * @since 4.0.0 28 * @access protected 28 29 */ 29 30 protected function get_installed_plugin_slugs() { -
trunk/src/wp-includes/class-wp-embed.php
r29160 r29455 195 195 196 196 /** 197 * Filter the oEmbed TTL (time to live).197 * Filter the oEmbed TTL value (time to live). 198 198 * 199 199 * @since 4.0.0 -
trunk/src/wp-includes/media.php
r29438 r29455 2298 2298 * 2299 2299 * @param array $matches The regex matches from the provided regex when calling 2300 * {@ linkwp_embed_register_handler()}.2300 * {@see wp_embed_register_handler()}. 2301 2301 * @param array $attr Embed attributes. 2302 2302 * @param string $url The original URL that was matched by the regex. … … 3302 3302 * 3303 3303 * @global $wp_version 3304 * 3304 3305 * @return array The relevant CSS file URLs. 3305 3306 */ -
trunk/src/wp-includes/session.php
r29224 r29455 11 11 * 12 12 * @since 4.0.0 13 * 13 * @access protected 14 14 * @var int User ID. 15 15 */ … … 32 32 * 33 33 * @since 4.0.0 34 * @access public 35 * @static 34 36 * 35 37 * @param int $user_id User whose session to manage. … … 52 54 * 53 55 * @since 4.0.0 56 * @access private 54 57 * 55 58 * @param string $token Token to hash. … … 66 69 * 67 70 * @since 4.0.0 71 * @access public 68 72 * 69 73 * @param string $token Token to verify. … … 84 88 * 85 89 * @since 4.0.0 90 * @access public 86 91 * 87 92 * @param int $expiration Session expiration timestamp. … … 114 119 * 115 120 * @since 4.0.0 121 * @access public 116 122 * 117 123 * @param string $token Token to update. … … 127 133 * 128 134 * @since 4.0.0 135 * @access public 129 136 * 130 137 * @param string $token Token to destroy. … … 140 147 * 141 148 * @since 4.0.0 149 * @access public 142 150 * 143 151 * @param string $token_to_keep Token to keep. … … 158 166 * 159 167 * @since 4.0.0 168 * @access protected 160 169 * 161 170 * @param array $session Session to check. … … 170 179 * 171 180 * @since 4.0.0 181 * @access public 172 182 */ 173 183 final public function destroy_all_tokens() { … … 179 189 * 180 190 * @since 4.0.0 191 * @access public 192 * @static 181 193 */ 182 194 final public static function destroy_all_tokens_for_all_users() { … … 189 201 * 190 202 * @since 4.0.0 203 * @access public 191 204 * 192 205 * @return array Sessions of a user. … … 200 213 * 201 214 * @since 4.0.0 215 * @access protected 202 216 * 203 217 * @return array Sessions of a user, keyed by verifier. … … 209 223 * 210 224 * @since 4.0.0 225 * @access protected 211 226 * 212 227 * @param $verifier Verifier of the session to retrieve. … … 221 236 * 222 237 * @since 4.0.0 238 * @access protected 223 239 * 224 240 * @param $verifier Verifier of the session to update. … … 231 247 * 232 248 * @since 4.0.0 249 * @access protected 233 250 * 234 251 * @param $verifier Verifier of the session to keep. … … 240 257 * 241 258 * @since 4.0.0 259 * @access protected 242 260 */ 243 261 abstract protected function destroy_all_sessions(); … … 247 265 * 248 266 * @since 4.0.0 267 * @access public 268 * @static 249 269 */ 250 270 public static function drop_sessions() {} … … 262 282 * 263 283 * @since 4.0.0 284 * @access protected 264 285 * 265 286 * @return array Sessions of a user. … … 294 315 * 295 316 * @since 4.0.0 317 * @access protected 296 318 * 297 319 * @param $verifier Verifier of the session to retrieve. … … 311 333 * Update a session by its verifier. 312 334 * 313 * Omitting the second argument destroys the session.314 * 315 * @since 4.0.0316 * 317 * @param $verifier Verifier of the session to update.335 * @since 4.0.0 336 * @access protected 337 * 338 * @param string $verifier Verifier of the session to update. 339 * @param array $session Optional. Session. Omitting this argument destroys the session. 318 340 */ 319 341 protected function update_session( $verifier, $session = null ) { … … 333 355 * 334 356 * @since 4.0.0 335 * 336 * @param array $sessions 357 * @access protected 358 * 359 * @param array $sessions Sessions. 337 360 */ 338 361 protected function update_sessions( $sessions ) { … … 352 375 * 353 376 * @since 4.0.0 377 * @access protected 354 378 * 355 379 * @param $verifier Verifier of the session to keep. … … 364 388 * 365 389 * @since 4.0.0 390 * @access protected 366 391 */ 367 392 protected function destroy_all_sessions() { … … 373 398 * 374 399 * @since 4.0.0 400 * @access public 401 * @static 375 402 */ 376 403 public static function drop_sessions() {
Note: See TracChangeset
for help on using the changeset viewer.