9ece60abf83194a71721f10b273c776cfe7a9222
[yaffs-website] / web / modules / contrib / video_embed_field / modules / video_embed_media / video_embed_media.install
1 <?php
2
3 /**
4  * @file
5  * Install file for video_embed_media.
6  */
7
8 /**
9  * Implements hook_install().
10  */
11 function video_embed_media_install() {
12   if (\Drupal::moduleHandler()->moduleExists('media_entity_embeddable_video')) {
13     \Drupal::service('video_embed_media.upgrade_manager')->upgrade();
14   }
15   // Copy the video icons into the right place.
16   $icon_folder = drupal_get_path('module', 'video_embed_media') . '/images/icons';
17   $destination = \Drupal::config('media_entity.settings')->get('icon_base');
18   media_entity_copy_icons($icon_folder, $destination);
19 }