You are here

media_entity_slideshow.install in Media entity slideshow 8

Same filename and directory in other branches
  1. 8.2 media_entity_slideshow.install

Install, uninstall and update hooks for Media entity slideshow module.

File

media_entity_slideshow.install
View 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