You are here

function _media_gallery_attach_edit_resources in Media Gallery 7.2

Same name and namespace in other branches
  1. 7 media_gallery.module \_media_gallery_attach_edit_resources()

Helper function to attach JS for media galleries to

1 call to _media_gallery_attach_edit_resources()
media_gallery_form_alter in ./media_gallery.module
Implements hook_form_alter().

File

./media_gallery.module, line 1180

Code

function _media_gallery_attach_edit_resources(&$element) {
  $path = drupal_get_path('module', 'media_gallery');
  $element['#attached']['js'][] = $path . '/js/media_gallery.edit.js';
  $element['#attached']['css'][] = $path . '/css/media_gallery.edit.css';
}