| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 28 | public function buildConfigurationForm(array $form, FormStateInterface $form_state) { |
||
| 29 | $form['path'] = [ |
||
| 30 | '#type' => 'textfield', |
||
| 31 | '#title' => $this->t('Path'), |
||
| 32 | '#required' => TRUE, |
||
| 33 | '#description' => $this->t('The path at which the browser will be accessible. Must begin with a forward slash.'), |
||
| 34 | '#default_value' => $this->configuration['path'], |
||
| 35 | ]; |
||
| 36 | |||
| 37 | return $form; |
||
| 38 | } |
||
| 39 | |||
| 85 |