1 | <?php |
||
9 | class SelectView implements CellViewInterface |
||
10 | { |
||
11 | const INPUT_NAME = '__select__'; |
||
12 | |||
13 | private $identifier; |
||
14 | |||
15 | public function __construct($identifier) |
||
19 | |||
20 | public function getInputName() |
||
24 | |||
25 | public function getValue() |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function getVariant() |
||
36 | } |
||
37 |