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