| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function process(HTTPRequest $request): string |
||
| 23 | { |
||
| 24 | $ids = $this->getRecordIDList(); |
||
| 25 | if (!empty($ids)) { |
||
| 26 | $this->tabulatorGrid->getDataList()->removeMany($ids); |
||
| 27 | } |
||
| 28 | $result = _t(__CLASS__ . ".RECORDSUNLINKED", "{count} records unlinked", ["count" => count($ids)]); |
||
| 29 | return $result; |
||
| 30 | } |
||
| 32 |