| Versionen | |
|---|---|
| drupal7 | field_attach_rename_bundle($bundle_old, $bundle_new) |
Notify field.module that a bundle was renamed.
$bundle_old The previous name of the bundle.
$bundle_new The new name of the bundle.
This function is an autoloader for _field_attach_rename_bundle() in modules/field/field.attach.inc.
modules/
<?php
function field_attach_rename_bundle($bundle_old, $bundle_new) {
require_once DRUPAL_ROOT . '/modules/field/field.attach.inc';
return _field_attach_rename_bundle($bundle_old, $bundle_new);
}
?>
Kommentare
Kommentar hinzufügen