function domain_conf_update_7000 in Domain Access 7.3
Same name and namespace in other branches
- 7.2 domain_conf/domain_conf.install \domain_conf_update_7000()
Update block deltas to Drupal 7.
File
- domain_conf/
domain_conf.install, line 28 - Install file for Domain Conf.
Code
function domain_conf_update_7000() {
// Get an array of the renamed block deltas, organized by module.
$renamed_deltas = array(
'domain' => array(
'domain-primary-links' => 'domain-main-links',
),
);
$moved_deltas = array();
update_fix_d7_block_deltas($sandbox, $renamed_deltas, $moved_deltas);
return t('Domain Conf blocks updated.');
}