You are here

function cms_core_form_alter in Glazed CMS Core 8

Implements hook_form_alter().

File

./cms_core.module, line 13
Primary module hooks for CMS Core module.

Code

function cms_core_form_alter(&$form, FormStateInterface &$form_state) {
  if (isset($form['#form_id'])) {
    if ($form['#form_id'] == 'entity_browser_cms_image_browser_form' || $form['#form_id'] == 'entity_browser_cms_file_browser_form') {
      file_browser_attach_file_browser_to_form($form);
    }
  }
}