Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / media_entity_slideshow / media_entity_slideshow.install
1 <?php
2
3 /**
4  * @file
5  * Install, uninstall and update hooks for Media entity slideshow module.
6  */
7
8 /**
9  * Implements hook_install().
10  */
11 function media_entity_slideshow_install() {
12   $source = drupal_get_path('module', 'media_entity_slideshow') . '/images/icons';
13   $destination = \Drupal::config('media_entity.settings')->get('icon_base');
14   media_entity_copy_icons($source, $destination);
15 }