degov-8.x-2.0/modules/degov_media_video_upload/modules/degov_paragraph_video_subtitle/degov_paragraph_video_subtitle.install
modules/degov_media_video_upload/modules/degov_paragraph_video_subtitle/degov_paragraph_video_subtitle.install
<?php
use Drupal\degov_common\Common;
/**
* Implements hook_uninstall().
*/
function degov_paragraph_video_subtitle_uninstall() {
// Removes all module type defined content when uninstalling the module.
Common::removeContent([
'entity_type' => 'paragraph',
'entity_bundles' => ['video_subtitle'],
]);
}
