1 | <?php |
||
15 | class ToolbarButton |
||
16 | { |
||
17 | |||
18 | use Traits\TButton; |
||
19 | use Traits\TLink; |
||
20 | |||
21 | /** |
||
22 | * @var DataGrid |
||
23 | */ |
||
24 | protected $grid; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $href; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | protected $params; |
||
35 | |||
36 | /** |
||
37 | * @param DataGrid $grid |
||
38 | * @param string $href |
||
39 | * @param string $text |
||
40 | * @param array $params |
||
41 | */ |
||
42 | public function __construct(DataGrid $grid, $href, $text, $params = []) |
||
49 | |||
50 | |||
51 | /** |
||
52 | * Render toolbar button |
||
53 | * @return Html |
||
54 | */ |
||
55 | public function renderButton() |
||
75 | |||
76 | } |
||
77 |