TableScreen
2 days ago
ColumnTypesFactory.php
2 days ago
ListTable.php
2 days ago
MediaLibraryAssistant.php
2 days ago
TableIdsFactory.php
2 days ago
TableScreen.php
2 days ago
TableScreenFactory.php
2 days ago
WpListTableFactory.php
2 days ago
TableIdsFactory.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\ThirdParty\MediaLibraryAssistant; |
| 6 | |
| 7 | use AC; |
| 8 | use AC\Type\TableId; |
| 9 | use AC\Type\TableIdCollection; |
| 10 | |
| 11 | class TableIdsFactory implements AC\TableIdsFactory |
| 12 | { |
| 13 | public function create(): TableIdCollection |
| 14 | { |
| 15 | return new TableIdCollection([ |
| 16 | new TableId('mla-media-assistant'), |
| 17 | ]); |
| 18 | } |
| 19 | |
| 20 | } |
| 21 |