mdrop_suite-1.0.0-alpha1/modules/mdrop_suite_block/modules/mdrop_suite_block_local_video/mdrop_suite_block_local_video.install
modules/mdrop_suite_block/modules/mdrop_suite_block_local_video/mdrop_suite_block_local_video.install
<?php
/**
* @file
* Mdrop Suite - Block - Local video install module file.
*/
use Drupal\mdrop_suite_block_local_video\Entity\Bundle\MdropSuiteBlockLocalVideo;
/**
* Implements hook_install().
*/
function mdrop_suite_block_local_video_install() {
\Drupal::service('mdrop_suite_bundle_field.helper')->installBlockContentBundleFields(MdropSuiteBlockLocalVideo::BUNDLE_KEY, MdropSuiteBlockLocalVideo::class);
}
/**
* Implements hook_uninstall().
*/
function mdrop_suite_block_local_video_uninstall() {
\Drupal::service('mdrop_suite_block.helper')->uninstallBlockContentType(MdropSuiteBlockLocalVideo::BUNDLE_KEY);
}
