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