You are here

cms_core.module in Glazed CMS Core 8

Same filename and directory in other branches
  1. 7 cms_core.module

Primary module hooks for CMS Core module.

File

cms_core.module
View source
<?php

/**
 * @file
 * Primary module hooks for CMS Core module.
 */
use Drupal\Core\Form\FormStateInterface;

/**
 * Implements hook_form_alter().
 */
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);
    }
  }
}

Functions

Namesort descending Description
cms_core_form_alter Implements hook_form_alter().