clearCachedDefinitions(); \Drupal::service('plugin.manager.field.field_type')->clearCachedDefinitions(); \Drupal::service('config.factory')->reset(); Field::fieldInfo()->flush(); } /** * Returns all field definitions. * * Use of this function should be avoided when possible, since it loads and * statically caches a potentially large array of information. Use * field_info_field_map() instead. * * When iterating over the fields present in a given bundle after a call to * field_info_instances($entity_type, $bundle), it is recommended to use * field_info_field() on each individual field instead. * * @return * An array of field definitions, keyed by field UUID. * * @see field_info_field_map() */ function field_info_fields() { // Filter out deleted fields. return array_filter(Field::fieldInfo()->getFields(), function ($field) { return !$field->deleted; }); } /** * Returns a list and settings of pseudo-field elements in a given bundle. * * If $context is 'form', an array with the following structure: * @code * 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( * // ... * ), * ); * @endcode * * If $context is 'display', an array with the following structure: * @code * 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( * // ... * ), * ); * @endcode * * @param $entity_type * The type of entity; e.g. 'node' or 'user'. * @param $bundle * The bundle name. * @param $context * The context for which the list of pseudo-fields is requested. Either 'form' * or 'display'. * * @return * The array of pseudo-field elements in the bundle. * * @deprecated in Drupal 8.x-dev. Use * \Drupal::entityManager()->getExtraFields() instead. */ function field_info_extra_fields($entity_type, $bundle, $context) { $info = \Drupal::entityManager()->getExtraFields($entity_type, $bundle); return isset($info[$context]) ? $info[$context] : array(); } /** * @} End of "defgroup field_info". */