ExtendedValue.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Value\Extended; |
| 6 | |
| 7 | use AC\Column; |
| 8 | use AC\ListScreen; |
| 9 | use AC\Value\ExtendedValueLink; |
| 10 | |
| 11 | interface ExtendedValue |
| 12 | { |
| 13 | public function render($id, array $params, Column $column, ListScreen $list_screen): string; |
| 14 | |
| 15 | public function can_render(string $view): bool; |
| 16 | |
| 17 | public function get_link($id, string $label): ExtendedValueLink; |
| 18 | |
| 19 | } |
| 20 |