Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class GridFieldHtmlFragment implements GridField_HTMLProvider |
||
15 | { |
||
16 | /** |
||
17 | * Fragment to write the html fragment to. |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $targetFragment; |
||
21 | |||
22 | /** |
||
23 | * An HTML fragment to render |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $htmlFragment; |
||
27 | |||
28 | /** |
||
29 | * @param string $targetFragment Fragment to write the html fragment to. |
||
30 | * @param string $htmlFragment An HTML fragment to render |
||
31 | */ |
||
32 | public function __construct($targetFragment, $htmlFragment) |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @param GridField $gridField |
||
40 | * @return array |
||
41 | */ |
||
42 | public function getHTMLFragments($gridField) |
||
47 |