function FieldAPIHandlerTrait::getEntityFieldManager
Returns the entity field manager.
Return value
\Drupal\Core\Entity\EntityFieldManagerInterface The entity field manager.
File
- 
              core/
modules/ views/ src/ FieldAPIHandlerTrait.php, line 74  
Class
- FieldAPIHandlerTrait
 - A trait containing helper methods for field definitions.
 
Namespace
Drupal\viewsCode
protected function getEntityFieldManager() {
  if (!isset($this->entityFieldManager)) {
    $this->entityFieldManager = \Drupal::service('entity_field.manager');
  }
  return $this->entityFieldManager;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.