Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity_browser / src / 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 }