| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function buildConfigurationForm(array $form, FormStateInterface $form_state) { |
||
| 33 | $form['class'] = [ |
||
| 34 | '#type' => 'textfield', |
||
| 35 | '#title' => $this->t('Extra Classes'), |
||
| 36 | '#default_value' => $this->configuration['class'], |
||
| 37 | ]; |
||
| 38 | $form['full_width'] = [ |
||
| 39 | '#type' => 'checkbox', |
||
| 40 | '#title' => $this->t('Full width'), |
||
| 41 | '#default_value' => $this->configuration['full_width'], |
||
| 42 | ]; |
||
| 43 | return $form; |
||
| 44 | } |
||
| 61 |