function locale_update_8009

Convert locale blocks to language blocks.

Related topics

File

drupal/core/modules/locale/locale.install, line 749
Install, update, and uninstall functions for the Locale module.

Code

function locale_update_8009() {
  $block_tables = array(
    'block',
    'block_node_type',
    'block_role',
  );
  foreach ($block_tables as $table) {
    db_update($table)
      ->fields(array(
      'module' => 'language',
    ))
      ->condition('module', 'locale')
      ->execute();
  }
}