ManageHeading
1 day ago
ManageValue
1 day ago
SaveHeading
1 day ago
TableRows
1 day ago
TableRowsFactory
1 day ago
Comment.php
1 day ago
ListTable.php
1 day ago
ManageHeadingFactory.php
1 day ago
ManageValueService.php
1 day ago
ManageValueServiceFactory.php
1 day ago
Media.php
1 day ago
MetaType.php
1 day ago
Post.php
1 day ago
TableRows.php
1 day ago
TableRowsFactory.php
1 day ago
TotalItems.php
1 day ago
User.php
1 day ago
ListTable.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\TableScreen; |
| 6 | |
| 7 | use AC; |
| 8 | |
| 9 | interface ListTable |
| 10 | { |
| 11 | /** |
| 12 | * Calling this method can initialize its corresponding WP list table, which can do all |
| 13 | * the necessary setup, such as SQL queries to populate itself |
| 14 | */ |
| 15 | public function list_table(): AC\ListTable; |
| 16 | |
| 17 | } |
| 18 |