interface EntityBrowserFormInterface in Entity Browser 8
Same name and namespace in other branches
- 8.2 src/EntityBrowserFormInterface.php \Drupal\entity_browser\EntityBrowserFormInterface
Provides an interface defining an entity browser form.
Hierarchy
- interface \Drupal\Core\Form\FormInterface
- interface \Drupal\entity_browser\EntityBrowserFormInterface
Expanded class hierarchy of EntityBrowserFormInterface
All classes that implement EntityBrowserFormInterface
1 file declares its use of EntityBrowserFormInterface
- EntityBrowserForm.php in src/
Form/ EntityBrowserForm.php
File
- src/
EntityBrowserFormInterface.php, line 10
Namespace
Drupal\entity_browserView source
interface EntityBrowserFormInterface extends FormInterface {
/**
* Sets entity browser entity.
*
* @param \Drupal\entity_browser\EntityBrowserInterface $entity_browser
* Entity browser entity.
*/
public function setEntityBrowser(EntityBrowserInterface $entity_browser);
/**
* Returns the entity browser entity.
*
* @return \Drupal\entity_browser\EntityBrowserInterface
* Entity browser entity.
*/
public function getEntityBrowser();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityBrowserFormInterface:: |
public | function | Returns the entity browser entity. | 1 |
EntityBrowserFormInterface:: |
public | function | Sets entity browser entity. | 1 |
FormInterface:: |
public | function | Form constructor. | 179 |
FormInterface:: |
public | function | Returns a unique string identifying the form. | 236 |
FormInterface:: |
public | function | Form submission handler. | 192 |
FormInterface:: |
public | function | Form validation handler. | 30 |