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