WpListTableTrait.php
338 Bytes
<?php
namespace AC\ListTable;
use WP_List_Table;
trait WpListTableTrait {
/**
* @var WP_List_Table $table
*/
protected $table;
public function get_total_items(): int {
return $this->table->get_pagination_arg( 'total_items' );
}
public function set_list_table( WP_List_Table $table ): void {
$this->table = $table;
}
}