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