public function Mapping::render in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/style/Mapping.php \Drupal\views\Plugin\views\style\Mapping::render()
- 9 core/modules/views/src/Plugin/views/style/Mapping.php \Drupal\views\Plugin\views\style\Mapping::render()
Overrides Drupal\views\Plugin\views\style\StylePluginBase::render().
Provides the mapping definition as an available variable.
Overrides StylePluginBase::render
File
- core/
modules/ views/ src/ Plugin/ views/ style/ Mapping.php, line 131
Class
- Mapping
- Allows fields to be mapped to specific use cases.
Namespace
Drupal\views\Plugin\views\styleCode
public function render() {
return [
'#theme' => $this
->themeFunctions(),
'#view' => $this->view,
'#options' => $this->options,
'#rows' => $this->view->result,
'#mapping' => $this
->defineMapping(),
];
}