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