function custom_block_entity_info_alter

Implements hook_entity_info_alter().

File

drupal/core/modules/block/custom_block/custom_block.module, line 155
Allows the creaation of custom blocks through the user interface.

Code

function custom_block_entity_info_alter(&$types) {

  // Add a translation handler for fields if the language module is enabled.
  if (module_exists('language')) {
    $types['custom_block']['translation']['custom_block'] = TRUE;
  }
}