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