Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function buildForm(array $form, FormStateInterface $form_state) { |
||
20 | /** @var \Drupal\entity_browser\EntityBrowserInterface $entity_browser */ |
||
21 | $entity_browser = $form_state->getTemporaryValue('wizard')['entity_browser']; |
||
22 | $form = $this->getPlugin($entity_browser)->buildConfigurationForm($form, $form_state); |
||
23 | return $form; |
||
24 | } |
||
25 | |||
53 |