One Hat Cyber Team
Your IP :
52.14.140.108
Server IP :
130.211.160.56
Server :
Linux pod-100217:apache2_82:v0.5.7 5.4.0-1102-gcp #111~18.04.2-Ubuntu SMP Tue Mar 21 16:15:46 UTC 2023 x86_64
Server Software :
Apache
PHP Version :
8.2.26
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
nas
/
content
/
live
/
wkhjackfruit
/
wp-admin
/
includes
/
View File Name :
class-wp-post-comments-list-table.php
<?php /** * List Table API: WP_Post_Comments_List_Table class * * @package WordPress * @subpackage Administration * @since 4.4.0 */ /** * Core class used to implement displaying post comments in a list table. * * @since 3.1.0 * * @see WP_Comments_List_Table */ class WP_Post_Comments_List_Table extends WP_Comments_List_Table { /** * @return array */ protected function get_column_info() { return array( array( 'author' => __( 'Author' ), 'comment' => _x( 'Comment', 'column name' ), ), array(), array(), 'comment', ); } /** * @return array */ protected function get_table_classes() { $classes = parent::get_table_classes(); $classes[] = 'wp-list-table'; $classes[] = 'comments-box'; return $classes; } /** * @param bool $output_empty */ public function display( $output_empty = false ) { $singular = $this->_args['singular']; wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' ); ?> <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;"> <tbody id="the-comment-list" <?php if ( $singular ) { echo " data-wp-lists='list:$singular'"; } ?> > <?php if ( ! $output_empty ) { $this->display_rows_or_placeholder(); } ?> </tbody> </table> <?php } /** * @param bool $comment_status * @return int */ public function get_per_page( $comment_status = false ) { return 10; } }