2039f289979d5575dac58743c296299ed2e6c175
[yaffs-website] / web / modules / contrib / media_entity_document / media_entity_document.install
1 <?php
2 /**
3  * @file
4  * Install, uninstall and update hooks for Media entity document module.
5  */
6
7 /**
8  * Implements hook_install().
9  */
10 function media_entity_document_install() {
11   $source = drupal_get_path('module', 'media_entity_document') . '/images/icons';
12   $destination = \Drupal::config('media_entity.settings')->get('icon_base');
13   media_entity_copy_icons($source, $destination);
14 }