1 | <?php |
||
10 | class SelectCell implements CellInterface |
||
11 | { |
||
12 | const INPUT_NAME = '__select__'; |
||
13 | |||
14 | private $identifier; |
||
15 | |||
16 | public function __construct($identifier) |
||
20 | |||
21 | public function getInputName() |
||
25 | |||
26 | public function getValue() |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function getVariant() |
||
37 | } |
||
38 |