Changeset 6438 for trunk/src/includes/core/sub-actions.php
- Timestamp:
- 05/27/2017 05:04:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/sub-actions.php
r6302 r6438 468 468 */ 469 469 function bbp_plugin_locale( $locale = '', $domain = '' ) { 470 471 // Filter & return 470 472 return apply_filters( 'bbp_plugin_locale', $locale, $domain ); 471 473 } … … 480 482 */ 481 483 function bbp_request( $query_vars = array() ) { 484 485 // Filter & return 482 486 return apply_filters( 'bbp_request', $query_vars ); 483 487 } … … 494 498 */ 495 499 function bbp_template_include( $template = '' ) { 500 501 // Filter & return 496 502 return apply_filters( 'bbp_template_include', $template ); 497 503 } … … 516 522 * @since 2.0.0 bbPress (r2944) 517 523 * 524 * @param array $themes 518 525 * @uses apply_filters() Calls 'bbp_allowed_themes' with the allowed themes list 519 526 */ 520 527 function bbp_allowed_themes( $themes ) { 528 529 // Filter & return 521 530 return apply_filters( 'bbp_allowed_themes', $themes ); 522 531 } … … 533 542 */ 534 543 function bbp_map_meta_caps( $caps = array(), $cap = '', $user_id = 0, $args = array() ) { 544 545 // Filter & return 535 546 return apply_filters( 'bbp_map_meta_caps', $caps, $cap, $user_id, $args ); 536 547 }
Note: See TracChangeset
for help on using the changeset viewer.