'moderation', //singular name of the listed records
'plural' => 'moderations', //plural name of the listed records
'ajax' => false, //does this table support ajax?
'screen' => 'wpForoModerations',
]
);
}
/** ************************************************************************
* Recommended. This method is called when the parent class can't find a method
* specifically build for a given column. Generally, it's recommended to include
* one method for each column you want to render, keeping your package class
* neat and organized. For example, if the class needs to process a column
* named 'title', it would first see if a method named $this->column_title()
* exists - if it does, that method will be used. If it doesn't, this one will
* be used. Generally, you should try to use custom column methods as much as
* possible.
*
* Since we have defined a column_title() method later on, this method doesn't
* need to concern itself with any column with a name of 'title'. Instead, it
* needs to handle everything else.
*
* For more detailed insight into how columns are handled, take a look at
* WP_List_Table::single_row_columns()
*
* @param array $item A singular item (one full row's worth of data)
* @param string $column_name The name/slug of the column to be processed
*
* @return string Text or HTML to be placed inside the column
**************************************************************************/
function column_default( $item, $column_name ) {
switch( $column_name ) {
case 'title':
return apply_filters( 'wpforo_admin_listtables_moderations_column_title', $item[ $column_name ], $item );
case 'userid':
$userdata = get_userdata( $item[ $column_name ] );
$display_name = ! empty( $userdata->user_nicename ) ? urldecode( $userdata->user_nicename ) : $item[ $column_name ];
// Check if user is banned
$member = WPF()->member->get_member( $item[ $column_name ] );
$is_banned = ( ! empty( $member ) && isset( $member['status'] ) && $member['status'] === 'banned' );
if( $is_banned ) {
return '' . esc_html( $display_name ) . '';
}
return esc_html( $display_name );
case 'is_first_post':
return ( $item[ $column_name ] ) ? __( 'TOPIC', 'wpforo' ) : __( 'REPLY', 'wpforo' );
case 'private':
return ( $item[ $column_name ] ) ? __( 'YES', 'wpforo' ) : __( 'NO', 'wpforo' );
default:
return $item[ $column_name ];
}
}
/** ************************************************************************
* Recommended. This is a custom column method and is responsible for what
* is rendered in any column with a name/slug of 'title'. Every time the class
* needs to render a column, it first looks for a method named
* column_{$column_title} - if it exists, that method is run. If it doesn't
* exist, column_default() is called instead.
*
* This example also illustrates how to implement rollover actions. Actions
* should be an associative array formatted as 'slug'=>'link html' - and you
* will need to generate the URLs yourself. You could even ensure the links
*
*
* @param array $item A singular item (one full row's worth of data)
*
* @return string Text to be placed inside the column
(movie title only)
**************************************************************************@see WP_List_Table::::single_row_columns()
*/
function column_cb( $item ) {
return sprintf(
'',
/*$1%s*/ 'postids', //Let's simply repurpose the table's singular label ("movie")
/*$2%s*/ $item['postid'] //The value of the checkbox should be the record's id
);
}
/** ************************************************************************
* REQUIRED! This method dictates the table's columns and titles. This should
* return an array where the key is the column slug (and class) and the value
* is the column's title text. If you need a checkbox for bulk actions, refer
* to the $columns array below.
*
* The 'cb' column is treated differently than the rest. If including a checkbox
* column in your table you must create a column_cb() method. If you don't need
* to bulk actions or checkboxes, simply leave the 'cb' entry out of your array.
*
* @return array An associative array containing column information: 'slugs'=>'Visible Titles'
**************************************************************************@see WP_List_Table::::single_row_columns()
*/
function get_columns() {
return [
'cb' => '', //Render a checkbox instead of text
'postid' => __( 'ID', 'wpforo' ),
'title' => __( 'Title', 'wpforo' ),
'is_first_post' => __( 'Type', 'wpforo' ),
'userid' => __( 'Created By', 'wpforo' ),
'created' => __( 'Created', 'wpforo' ),
'private' => __( 'Private', 'wpforo' ),
];
}
/** ************************************************************************
* Optional. If you want one or more columns to be sortable (ASC/DESC toggle),
* you will need to register it here. This should return an array where the
* key is the column that needs to be sortable, and the value is db column to
* sort by. Often, the key and value will be the same, but this is not always
* the case (as the value is a column name from the database, not the list table).
*
* This method merely defines which columns should be sortable and makes them
* clickable - it does not handle the actual sorting. You still need to detect
* the ORDERBY and ORDER querystring variables within prepare_items() and sort
* your data accordingly (usually by modifying your query).
*
* @return array An associative array containing all the columns that should be sortable: 'slugs'=>array('data_values',bool)
**************************************************************************/
function get_sortable_columns() {
return [
'postid' => [ 'postid', false ], //true means it's already sorted
'title' => [ 'title', false ],
'is_first_post' => [ 'is_first_post', false ],
'userid' => [ 'userid', false ],
'created' => [ 'created', false ],
'private' => [ 'private', false ],
];
}
/** ************************************************************************
* Optional. If you need to include bulk actions in your list table, this is
* the place to define them. Bulk actions are an associative array in the format
* 'slug'=>'Visible Title'
*
* If this method returns an empty value, no bulk action will be rendered. If
* you specify any bulk actions, the bulk actions box will be rendered with
* the table automatically on display().
*
* Also note that list tables are not automatically wrapped in