function ControllerBase::entityFormBuilder
Retrieves the entity form builder.
Return value
\Drupal\Core\Entity\EntityFormBuilderInterface The entity form builder.
File
- 
              core/
lib/ Drupal/ Core/ Controller/ ControllerBase.php, line 160  
Class
- ControllerBase
 - Utility base class for thin controllers.
 
Namespace
Drupal\Core\ControllerCode
protected function entityFormBuilder() {
  if (!$this->entityFormBuilder) {
    $this->entityFormBuilder = $this->container()
      ->get('entity.form_builder');
  }
  return $this->entityFormBuilder;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.