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