Changeset 7361 for trunk/src/includes/admin/forums.php
- Timestamp:
- 11/16/2025 11:04:14 PM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/forums.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/forums.php
r7360 r7361 483 483 private function get_row_action_sort_order() { 484 484 485 // Filter & return 485 /** 486 * Filters the row action sort order. 487 * 488 * @since 2.6.0 bbPress (r6771) 489 * 490 * @param array $order The default sort order. 491 */ 486 492 return (array) apply_filters( 'bbp_admin_forum_row_action_sort_order', array( 487 493 'edit', … … 503 509 private function get_allowed_notice_toggles() { 504 510 505 // Filter & return 506 return apply_filters( 'bbp_admin_forums_allowed_notice_toggles', array( 511 /** 512 * Filters the allowed notice toggles. 513 * 514 * @since 2.6.0 bbPress (r6396) 515 * 516 * @param array $toggles The default notice toggles. 517 */ 518 return (array) apply_filters( 'bbp_admin_forums_allowed_notice_toggles', array( 507 519 'opened', 508 520 'closed' … … 519 531 private function get_allowed_action_toggles() { 520 532 521 // Filter & return 533 /** 534 * Filters the allowed action toggles. 535 * 536 * @since 2.6.0 bbPress (r6396) 537 * 538 * @param array $toggles The default action toggles. 539 */ 522 540 return apply_filters( 'bbp_admin_forums_allowed_action_toggles', array( 523 541 'bbp_toggle_forum_close' … … 553 571 } 554 572 555 // Filter & return 556 return apply_filters( 'bbp_admin_forums_column_headers', $columns ); 573 /** 574 * Filters the column headers for the forums page. 575 * 576 * @since 2.0.0 bbPress (r2485) 577 * 578 * @param array $columns The column headers. 579 */ 580 return (array) apply_filters( 'bbp_admin_forums_column_headers', $columns ); 557 581 } 558 582
Note: See TracChangeset
for help on using the changeset viewer.