function BlockContentStorageBodyFieldHook::systemInfoAlter

Implements hook_system_info_alter().

Attributes

#[Hook('system_info_alter')]

File

core/modules/block_content/modules/block_content_storage_body_field/src/Hook/BlockContentStorageBodyFieldHook.php, line 18

Class

BlockContentStorageBodyFieldHook
Hook implementations for block_content_storage_body_field.

Namespace

Drupal\block_content_storage_body_field\Hook

Code

public function systemInfoAlter(array &$info, Extension $file, $type) : void {
  // By default, block_content_storage_body_field is hidden but needs to
  // be un-hidden when installed, so it can be uninstalled.
  if ($file->getType() == 'module' && $file->getName() == 'block_content_storage_body_field') {
    $info['hidden'] = FALSE;
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.