| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function __construct($editable = true, $itemsPerPage = null) |
||
| 18 | { |
||
| 19 | parent::__construct($itemsPerPage); |
||
| 20 | $this->addComponent(new GridFieldOrderableRows('Sort')); |
||
| 21 | |||
| 22 | if (!$editable) { |
||
| 23 | $this->removeComponentsByType(new GridFieldAddNewButton()); |
||
| 24 | } |
||
| 25 | |||
| 26 | $this->extend('updateConfig'); |
||
| 27 | } |
||
| 28 | } |