| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function registerOne(SettingsFieldInterface $field, ServerRequestInterface $request) |
||
| 28 | { |
||
| 29 | if ($field->shouldBeRendered($request)) { |
||
| 30 | add_settings_field( |
||
|
|
|||
| 31 | $field->getId(), |
||
| 32 | $field->getTitle(), |
||
| 33 | $this->getOutputHandler(), |
||
| 34 | $field->getPage(), |
||
| 35 | $field->getSection(), |
||
| 36 | $this->getFieldArgs($field) |
||
| 37 | ); |
||
| 56 |