| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function __construct() |
||
| 27 | { |
||
| 28 | parent::__construct(); |
||
| 29 | $this->addComponent(new GridFieldToolbarHeader()); |
||
| 30 | $this->addComponent(new GridFieldTitleHeader()); |
||
| 31 | $this->addComponent(new GridFieldOrderableRows()); |
||
| 32 | $this->addComponent(new GridFieldAddNewInlineButton("toolbar-header-right")); |
||
| 33 | $this->addComponent(new GridFieldEditableColumns()); |
||
| 34 | $this->addComponent(new GridFieldDeleteAction()); |
||
| 35 | $this->addComponent(new GridFieldFooter()); |
||
| 36 | } |
||
| 37 | } |