You are here

function panopoly_wysiwyg_update_8202 in Panopoly WYSIWYG 8.2

Enable panopoly_media module.

File

./panopoly_wysiwyg.install, line 47
Install hooks for Panopoly WYSIWYG.

Code

function panopoly_wysiwyg_update_8202() {

  /** @var \Drupal\Core\Extension\ModuleInstallerInterface $module_installer */
  $module_installer = \Drupal::service('module_installer');
  $module_installer
    ->install([
    'panopoly_media',
  ]);
}