1 field.info.inc field_info_extra_fields($entity_type, $bundle, $context)

Returns a list and settings of pseudo-field elements in a given bundle.

If $context is 'form', an array with the following structure:

  array(
    'name_of_pseudo_field_component' => array(
      'label' => The human readable name of the component,
      'description' => A short description of the component content,
      'weight' => The weight of the component in edit forms,
    ),
    'name_of_other_pseudo_field_component' => array(
      // ...
    ),
  );

If $context is 'display', an array with the following structure:

  array(
    'name_of_pseudo_field_component' => array(
      'label' => The human readable name of the component,
      'description' => A short description of the component content,
      // One entry per display mode, including the 'default' mode:
      'display' => array(
        'default' => array(
          'weight' => The weight of the component in displayed entities in
            this display mode,
          'visible' => TRUE if the component is visible, FALSE if hidden, in
            displayed entities in this display mode,
        ),
        'teaser' => array(
          // ...
        ),
      ),
    ),
    'name_of_other_pseudo_field_component' => array(
      // ...
    ),
  );

Parameters

$entity_type: The type of entity; e.g. 'node' or 'user'.

$bundle: The bundle name.

$context: The context for which the list of pseudo-fields is requested. Either 'form' or 'display'.

Return value

The array of pseudo-field elements in the bundle.:

Related topics

File

core/modules/field/field.info.inc, line 833
Field Info API, providing information about available fields and field types.

Code

function field_info_extra_fields($entity_type, $bundle, $context) {
  $info = _field_info_collate_fields();
  if (isset($info['extra_fields'][$entity_type][$bundle][$context])) {
    return $info['extra_fields'][$entity_type][$bundle][$context];
  }
  return array();
}