| 1 | <?php |
||
| 7 | trait Remove { |
||
| 8 | |||
| 9 | protected $definition = null, $error = false, $id = 0, $data = []; |
||
| 10 | |||
| 11 | # Remove entity entry from DB |
||
| 12 | |||
| 13 | public function remove() { |
||
| 62 | |||
| 63 | # Get dataset interface |
||
| 64 | |||
| 65 | abstract protected function children(); |
||
| 66 | |||
| 67 | # Implementor interface |
||
| 68 | |||
| 69 | abstract protected function implement(); |
||
| 70 | } |
||
| 71 | } |
||
| 72 |