1 | <?php |
||
16 | class MenuColumn extends DataColumn |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | public $format = 'raw'; |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public $header = ' '; |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public $contentOptions = [ |
||
32 | 'class' => 'text-center', |
||
33 | ]; |
||
34 | |||
35 | public $menuClass; |
||
36 | |||
37 | /** |
||
38 | * @var array |
||
39 | */ |
||
40 | public $menuButtonOptions = []; |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function getDataCellValue($model, $key, $index) |
||
60 | } |
||
61 |