function EntityReference::render
Builds the view result as a renderable array.
Return value
array Renderable array or empty array.
Overrides DisplayPluginBase::render
File
-
core/
modules/ views/ src/ Plugin/ views/ display/ EntityReference.php, line 138
Class
- EntityReference
- The plugin that handles an EntityReference display.
Namespace
Drupal\views\Plugin\views\displayCode
public function render() {
if (!empty($this->view->result) && $this->view->style_plugin
->evenEmpty()) {
return $this->view->style_plugin
->render($this->view->result);
}
return [];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.