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 view mode, including the 'default' mode:
'display' => array(
'default' => array(
'weight' => The weight of the component in displayed entities in
this view mode,
'visible' => TRUE if the component is visible, FALSE if hidden, in
displayed entities in this view mode,
),
'teaser' => array(
// ...
),
),
),
'name_of_other_pseudo_field_component' => array(
// ...
),
);
$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'.
The array of pseudo-field elements in the bundle.
function field_info_extra_fields($entity_type, $bundle, $context) {
$cache = _field_info_field_cache();
$info = $cache
->getBundleExtraFields($entity_type, $bundle);
return isset($info[$context]) ? $info[$context] : array();
}