field_info_fieldable_types

  1. drupal
    1. drupal7
Versionen
drupal7 field_info_fieldable_types($obj_type = NULL)

Return hook_fieldable_info() data.

Übergabeparameter

$obj_type (optional) A fieldable type name. If ommitted, all fieldable types will be returned.

Rückgabewert

Either a fieldable type description, as provided by hook_fieldable_info(), or an array of all existing fieldable types, keyed by fieldable type name.

This function is an autoloader for _field_info_fieldable_types() in modules/field/field.info.inc.

Verwandte Themen

▾ 2 functions call field_info_fieldable_types()

_field_attach_extract_ids in modules/field/field.attach.inc
Helper function to extract id, vid, and bundle name from an object.
_field_attach_load in modules/field/field.attach.inc
Load all fields for the most current version of each of a set of objects of a single object type.

Code

modules/field/field.autoload.inc, line 517

<?php
function field_info_fieldable_types($obj_type = NULL) {
  require_once DRUPAL_ROOT . '/modules/field/field.info.inc';
  return _field_info_fieldable_types($obj_type);
}
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen