Comment.php
5 years ago
Media.php
5 years ago
NetworkSite.php
5 years ago
NetworkUser.php
5 years ago
Post.php
5 years ago
Taxonomy.php
5 years ago
User.php
5 years ago
WpListTableTrait.php
5 years ago
WpListTableTrait.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\ListTable; |
| 4 | |
| 5 | use WP_List_Table; |
| 6 | |
| 7 | trait WpListTableTrait { |
| 8 | |
| 9 | /** |
| 10 | * @var WP_List_Table $table |
| 11 | */ |
| 12 | protected $table; |
| 13 | |
| 14 | /** |
| 15 | * @return int |
| 16 | */ |
| 17 | public function get_total_items() { |
| 18 | return (int) $this->table->get_pagination_arg( 'total_items' ); |
| 19 | } |
| 20 | |
| 21 | } |