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