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
ManageHeadingFactory.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\TableScreen; |
| 6 | |
| 7 | use AC\Registerable; |
| 8 | use AC\TableScreen; |
| 9 | |
| 10 | /** |
| 11 | * Any class that wants to render specific content within the table grid |
| 12 | * needs to define the render method. |
| 13 | */ |
| 14 | interface ManageHeadingFactory |
| 15 | { |
| 16 | public function can_create(TableScreen $table_screen): bool; |
| 17 | |
| 18 | public function create(TableScreen $table_screen, array $headings): Registerable; |
| 19 | |
| 20 | } |
| 21 |