Skip to:
Content

bbPress.org

Changeset 6769


Ignore:
Timestamp:
01/18/2018 05:36:45 PM (7 years ago)
Author:
johnjamesjacoby
Message:

Metaboxes: parse arguments passed into BBP_Topic_Replies_List_Table() constructor.

This allows conditional filtering & overloading of what the Replies list table displays.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/classes/class-bbp-topic-replies-list-table.php

    r6760 r6769  
    3434     */
    3535    public function __construct( $args = array() ) {
    36         $args = array(
     36
     37        // Parse arguments
     38        $args = bbp_parse_args( $args, array(
    3739            'singular' => 'reply',
    3840            'plural'   => 'replies',
    3941            'ajax'     => false
    40         );
    41         parent::__construct( $args );
    42     }
     42        ), 'topic_replies_list_table' );
     43
     44        // Construct the list table
     45        parent::__construct( $args );   }
    4346
    4447    /**
Note: See TracChangeset for help on using the changeset viewer.