function DateTestBase::renderTestEntity
Same name in this branch
- 8.9.x core/modules/datetime/tests/src/Functional/DateTestBase.php \Drupal\Tests\datetime\Functional\DateTestBase::renderTestEntity()
Same name in other branches
- 9 core/modules/datetime/tests/src/Functional/DateTestBase.php \Drupal\Tests\datetime\Functional\DateTestBase::renderTestEntity()
- 10 core/modules/datetime/tests/src/Functional/DateTestBase.php \Drupal\Tests\datetime\Functional\DateTestBase::renderTestEntity()
- 11.x core/modules/datetime/tests/src/Functional/DateTestBase.php \Drupal\Tests\datetime\Functional\DateTestBase::renderTestEntity()
Renders a entity_test and sets the output in the internal browser.
Parameters
int $id: The entity_test ID to render.
string $view_mode: (optional) The view mode to use for rendering. Defaults to 'full'.
bool $reset: (optional) Whether to reset the entity_test controller cache. Defaults to TRUE to simplify testing.
File
-
core/
modules/ datetime/ src/ Tests/ DateTestBase.php, line 166
Class
- DateTestBase
- Provides a base class for testing Datetime field functionality.
Namespace
Drupal\datetime\TestsCode
protected function renderTestEntity($id, $view_mode = 'full', $reset = TRUE) {
if ($reset) {
$this->container
->get('entity_type.manager')
->getStorage('entity_test')
->resetCache([
$id,
]);
}
$entity = EntityTest::load($id);
$display = EntityViewDisplay::collectRenderDisplay($entity, $view_mode);
$build = $display->build($entity);
$output = $this->container
->get('renderer')
->renderRoot($build);
$this->setRawContent($output);
$this->verbose($output);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.