| Versionen | |
|---|---|
| drupal7 | field_attach_preprocess($obj_type, &$object) |
To be called in entity preprocessor.
This function is an autoloader for _field_attach_preprocess() in modules/field/field.attach.inc.
modules/
<?php
function field_attach_preprocess($obj_type, &$object) {
require_once DRUPAL_ROOT . '/modules/field/field.attach.inc';
return _field_attach_preprocess($obj_type, $object);
}
?>
Kommentare
Kommentar hinzufügen