Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function __construct() |
||
32 | { |
||
33 | parent::__construct(); |
||
34 | $this->addComponent(new GridFieldToolbarHeader()); |
||
35 | $this->addComponent(new GridFieldTitleHeader()); |
||
36 | $this->addComponent(new GridFieldDetailForm()); |
||
37 | $this->addComponent(new GridFieldOrderableRows()); |
||
38 | $this->addComponent(new GridFieldAddNewButton("toolbar-header-right")); |
||
39 | $this->addComponent(new GridFieldDataColumns()); |
||
40 | $this->addComponent(new GridFieldEditButton()); |
||
41 | $this->addComponent(new GridFieldDeleteAction()); |
||
42 | $this->addComponent(new GridFieldFooter()); |
||
43 | } |
||
44 | } |