| Versionen | |
|---|---|
| drupal7 | field_info_bundles($obj_type = NULL) |
Return an array of fieldable bundle names and labels, for an individual object type or for all object types.
This function is an autoloader for _field_info_bundles() in modules/field/field.info.inc.
modules/
<?php
function field_info_bundles($obj_type = NULL) {
require_once DRUPAL_ROOT . '/modules/field/field.info.inc';
return _field_info_bundles($obj_type);
}
?>
Kommentare
Kommentar hinzufügen