| Versionen | |
|---|---|
| drupal7 | field_attach_prepare_translation($node) |
Implementation of hook_node_prepare_translation.
TODO D7: We do not yet know if this really belongs in Field API.
This function is an autoloader for _field_attach_prepare_translation() in modules/field/field.attach.inc.
modules/
<?php
function field_attach_prepare_translation($node) {
require_once DRUPAL_ROOT . '/modules/field/field.attach.inc';
return _field_attach_prepare_translation($node);
}
?>
Kommentare
Kommentar hinzufügen