You are here

function msnf_field_attach_rename_bundle in Multistep Nodeform 7

Implements hook_field_attach_rename_bundle().

File

./msnf.module, line 568
Main functions for module "Multistep Nodeform".

Code

function msnf_field_attach_rename_bundle($entity_type, $bundle_old, $bundle_new) {
  db_query('UPDATE {msnf_step} SET bundle = :bundle WHERE bundle = :old_bundle AND entity_type = :entity_type', array(
    ':bundle' => $bundle_new,
    ':old_bundle' => $bundle_old,
    ':entity_type' => $entity_type,
  ));
}