Changeset 27375 for trunk/src/wp-admin/includes/misc.php
- Timestamp:
- 03/03/2014 05:19:31 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r27323 r27375 28 28 * @param bool $got_rewrite Whether Apache and mod_rewrite are present. 29 29 */ 30 return apply_filters( 'got_rewrite', $got_rewrite);30 return apply_filters( 'got_rewrite', $got_rewrite ); 31 31 } 32 32 … … 335 335 $functions = array_unique( $functions ); 336 336 sort( $functions ); 337 338 /** 339 * Filter the list of functions/classes to be ignored from the documentation lookup. 340 * 341 * @since 2.8.0 342 * 343 * @param array $ignore_functions Functions/Classes to be ignored. 344 */ 337 345 $ignore_functions = apply_filters( 'documentation_ignore_functions', $ignore_functions ); 346 338 347 $ignore_functions = array_unique( $ignore_functions ); 339 348 … … 352 361 * 353 362 * @since 2.8.0 354 **/363 */ 355 364 function set_screen_options() { 356 365 … … 395 404 break; 396 405 default: 397 $value = apply_filters('set-screen-option', false, $option, $value); 406 407 /** 408 * Filter the default of number of rows value to use for item listings. 409 * 410 * @since 2.8.0 411 * 412 * @param bool|int $value The number of rows value. Default false. 413 * @param string $option The option name. 414 * @param int $value The number of rows to use. 415 */ 416 $value = apply_filters( 'set-screen-option', false, $option, $value ); 417 398 418 if ( false === $value ) 399 419 return;
Note: See TracChangeset
for help on using the changeset viewer.