fd1278d00bb78c1c04ea850f4f7d972b0eb39ae1
[yaffs-website] / Form / SelectionDisplayConfig.php
1 <?php
2
3 namespace Drupal\entity_browser\Form;
4
5 use Drupal\entity_browser\EntityBrowserInterface;
6
7 /**
8  * Selection display configuration step in entity browser form wizard.
9  */
10 class SelectionDisplayConfig extends PluginConfigFormBase {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function getFormId() {
16     return 'entity_browser_selection_display_config_form';
17   }
18
19   /**
20    * {@inheritdoc}
21    */
22   public function getPlugin(EntityBrowserInterface $entity_browser) {
23     return $entity_browser->getSelectionDisplay();
24   }
25
26 }