| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | protected function getFormFields(RequestHandler $controller = null, $name, $context = []) |
||
| 22 | { |
||
| 23 | $fields = new FieldList( |
||
| 24 | new HiddenField('ID'), |
||
| 25 | new TextField('Title') |
||
| 26 | ); |
||
| 27 | $this->invokeWithExtensions('updateFormFields', $fields, $controller, $name, $context); |
||
| 28 | return $fields; |
||
| 29 | } |
||
| 30 | |||
| 40 |