cms_core.module in Glazed CMS Core 8
Same filename and directory in other branches
Primary module hooks for CMS Core module.
File
cms_core.moduleView 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
Name![]() |
Description |
---|---|
cms_core_form_alter | Implements hook_form_alter(). |