InlineStyle
1 day ago
ManageHeading
1 day ago
ManageValue
1 day ago
SaveHeading
1 day ago
Service
1 day ago
TableScreenRepository
1 day ago
AdminHeadStyle.php
1 day ago
ManageValueServiceFactory.php
1 day ago
PrimaryColumn.php
1 day ago
PrimaryColumnFactory.php
1 day ago
SaveHeadingFactory.php
1 day ago
Screen.php
1 day ago
ScreenTools.php
1 day ago
TableFormView.php
1 day ago
TablePreference.php
1 day ago
TableScreenCollection.php
1 day ago
TableScreenRepository.php
1 day ago
SaveHeadingFactory.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Table; |
| 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 SaveHeadingFactory |
| 15 | { |
| 16 | public function can_create(TableScreen $table_screen): bool; |
| 17 | |
| 18 | public function create(TableScreen $table_screen): ?Registerable; |
| 19 | |
| 20 | } |
| 21 |