Added missing modules, including some as submodules.
[yaffs-website] / web / modules / contrib / entity_browser / src / DisplayAjaxInterface.php
1 <?php
2
3 namespace Drupal\entity_browser;
4
5 /**
6  * Defines the interface for entity browser displays.
7  */
8 interface DisplayAjaxInterface {
9
10   /**
11    * Adds ajax capabilities to the entity browser form.
12    *
13    * This will be used in Plugins like Modal that require the Entity Browser
14    * form to be sumbitted with ajax.  All other plugins that don't require it
15    * can leave it blank.
16    *
17    * @param array $form
18    *   Form array containing the Entity Browser elements.
19    */
20   public function addAjax(array &$form);
21
22 }