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