You are here

media_entity_browser.module in Media Entity Browser 8.2

Same filename and directory in other branches
  1. 8 media_entity_browser.module

The module file for media_entity_browser.

File

media_entity_browser.module
View source
<?php

/**
 * @file
 * The module file for media_entity_browser.
 */

/**
 * Implements hook_preprocess_views_view().
 */
function media_entity_browser_preprocess_views_view(&$variables) {
  if ($variables['view']
    ->id() === 'media_entity_browser') {
    $variables['view_array']['#attached']['library'][] = 'media_entity_browser/view';
  }
}

Functions

Namesort descending Description
media_entity_browser_preprocess_views_view Implements hook_preprocess_views_view().