You are here

function hook_form_entity_browser_form_alter in Entity Browser 8.2

Same name and namespace in other branches
  1. 8 entity_browser.api.php \hook_form_entity_browser_form_alter()

Edit any entity browser form.

Implements hook_form_BASE_FORM_ID_alter().

File

./entity_browser.api.php, line 80
Hooks related to entity browser and it's plugins.

Code

function hook_form_entity_browser_form_alter(&$form, FormStateInterface $form_state, $form_id) {
  $form['#attributes']['class'][] = 'hello-world';
}