mdrop_suite-1.0.0-alpha1/modules/mdrop_suite_block/modules/mdrop_suite_block_remote_video/mdrop_suite_block_remote_video.module
modules/mdrop_suite_block/modules/mdrop_suite_block_remote_video/mdrop_suite_block_remote_video.module
<?php
/**
* @file
* Mdrop Suite - Block - Remote video main module file.
*/
use Drupal\mdrop_suite_block_remote_video\Entity\Bundle\MdropSuiteBlockRemoteVideo;
/**
* Implements hook_entity_bundle_info_alter().
*/
function mdrop_suite_block_remote_video_entity_bundle_info_alter(array &$bundles): void {
if (!empty($bundles['block_content'][MdropSuiteBlockRemoteVideo::BUNDLE_KEY])) {
$bundles['block_content'][MdropSuiteBlockRemoteVideo::BUNDLE_KEY]['class'] = MdropSuiteBlockRemoteVideo::class;
}
}
