media_entity_slideshow.install in Media entity slideshow 8
Same filename and directory in other branches
Install, uninstall and update hooks for Media entity slideshow module.
File
media_entity_slideshow.installView source
<?php
/**
* @file
* Install, uninstall and update hooks for Media entity slideshow module.
*/
/**
* Implements hook_install().
*/
function media_entity_slideshow_install() {
$source = drupal_get_path('module', 'media_entity_slideshow') . '/images/icons';
$destination = \Drupal::config('media_entity.settings')
->get('icon_base');
media_entity_copy_icons($source, $destination);
}
Functions
Name | Description |
---|---|
media_entity_slideshow_install | Implements hook_install(). |