Changeset 41162 for trunk/src/wp-includes/class-wp-hook.php
- Timestamp:
- 07/27/2017 12:40:27 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-hook.php (modified) (25 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-hook.php
r40948 r41162 22 22 * 23 23 * @since 4.7.0 24 * @access public25 24 * @var array 26 25 */ … … 31 30 * 32 31 * @since 4.7.0 33 * @access private34 32 * @var array 35 33 */ … … 40 38 * 41 39 * @since 4.7.0 42 * @access private43 40 * @var array 44 41 */ … … 49 46 * 50 47 * @since 4.7.0 51 * @access private52 48 * @var int 53 49 */ … … 58 54 * 59 55 * @since 4.7.0 60 * @access private61 56 * @var bool 62 57 */ … … 67 62 * 68 63 * @since 4.7.0 69 * @access public70 64 * 71 65 * @param string $tag The name of the filter to hook the $function_to_add callback to. … … 100 94 * 101 95 * @since 4.7.0 102 * @access private103 96 * 104 97 * @param bool|int $new_priority Optional. The priority of the new filter being added. Default false, … … 169 162 * 170 163 * @since 4.7.0 171 * @access public172 164 * 173 165 * @param string $tag The filter hook to which the function to be removed is hooked. Used … … 197 189 * 198 190 * @since 4.7.0 199 * @access public200 191 * 201 192 * @param callable|bool $function_to_check Optional. The callback to check for. Default false. … … 227 218 * 228 219 * @since 4.7.0 229 * @access public230 220 * 231 221 * @return bool True if callbacks have been registered for the current hook, otherwise false. … … 244 234 * 245 235 * @since 4.7.0 246 * @access public247 236 * 248 237 * @param int|bool $priority Optional. The priority number to remove. Default false. … … 268 257 * 269 258 * @since 4.7.0 270 * @access public271 259 * 272 260 * @param mixed $value The value to filter. … … 315 303 * 316 304 * @since 4.7.0 317 * @access public318 305 * 319 306 * @param mixed $args Arguments to pass to the hook callbacks. … … 333 320 * 334 321 * @since 4.7.0 335 * @access public336 322 * 337 323 * @param array $args Arguments to pass to the hook callbacks. Passed by reference. … … 356 342 * 357 343 * @since 4.7.0 358 * @access public359 344 * 360 345 * @return int|false If the hook is running, return the current priority level. If it isn't running, return false. … … 372 357 * 373 358 * @since 4.7.0 374 * @access public375 359 * @static 376 360 * … … 406 390 * 407 391 * @since 4.7.0 408 * @access public409 392 * 410 393 * @link https://secure.php.net/manual/en/arrayaccess.offsetexists.php … … 421 404 * 422 405 * @since 4.7.0 423 * @access public424 406 * 425 407 * @link https://secure.php.net/manual/en/arrayaccess.offsetget.php … … 436 418 * 437 419 * @since 4.7.0 438 * @access public439 420 * 440 421 * @link https://secure.php.net/manual/en/arrayaccess.offsetset.php … … 455 436 * 456 437 * @since 4.7.0 457 * @access public458 438 * 459 439 * @link https://secure.php.net/manual/en/arrayaccess.offsetunset.php … … 469 449 * 470 450 * @since 4.7.0 471 * @access public472 451 * 473 452 * @link https://secure.php.net/manual/en/iterator.current.php … … 483 462 * 484 463 * @since 4.7.0 485 * @access public486 464 * 487 465 * @link https://secure.php.net/manual/en/iterator.next.php … … 497 475 * 498 476 * @since 4.7.0 499 * @access public500 477 * 501 478 * @link https://secure.php.net/manual/en/iterator.key.php … … 511 488 * 512 489 * @since 4.7.0 513 * @access public514 490 * 515 491 * @link https://secure.php.net/manual/en/iterator.valid.php … … 525 501 * 526 502 * @since 4.7.0 527 * @access public528 503 * 529 504 * @link https://secure.php.net/manual/en/iterator.rewind.php
Note: See TracChangeset
for help on using the changeset viewer.