function BooleanFormatterTest::renderEntityFields
Same name in other branches
- 8.9.x core/modules/field/tests/src/Kernel/Boolean/BooleanFormatterTest.php \Drupal\Tests\field\Kernel\Boolean\BooleanFormatterTest::renderEntityFields()
- 10 core/modules/field/tests/src/Kernel/Boolean/BooleanFormatterTest.php \Drupal\Tests\field\Kernel\Boolean\BooleanFormatterTest::renderEntityFields()
- 11.x core/modules/field/tests/src/Kernel/Boolean/BooleanFormatterTest.php \Drupal\Tests\field\Kernel\Boolean\BooleanFormatterTest::renderEntityFields()
Renders fields of a given entity with a given display.
Parameters
\Drupal\Core\Entity\FieldableEntityInterface $entity: The entity object with attached fields to render.
\Drupal\Core\Entity\Display\EntityViewDisplayInterface $display: The display to render the fields in.
Return value
string The rendered entity fields.
1 call to BooleanFormatterTest::renderEntityFields()
- BooleanFormatterTest::testBooleanFormatter in core/
modules/ field/ tests/ src/ Kernel/ Boolean/ BooleanFormatterTest.php - Tests boolean formatter output.
File
-
core/
modules/ field/ tests/ src/ Kernel/ Boolean/ BooleanFormatterTest.php, line 99
Class
- BooleanFormatterTest
- Tests the boolean formatter.
Namespace
Drupal\Tests\field\Kernel\BooleanCode
protected function renderEntityFields(FieldableEntityInterface $entity, EntityViewDisplayInterface $display) {
$content = $display->build($entity);
$content = $this->render($content);
return $content;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.