function views_plugin_style_mapping::render
Overrides views_plugin_style::render
File
-
plugins/
views_plugin_style_mapping.inc, line 115
Class
- views_plugin_style_mapping
- Allows fields to be mapped to specific use cases.
Code
public function render() {
// Provides the mapping definition as an available variable.
return theme($this->theme_functions(), array(
'view' => $this->view,
'options' => $this->options,
'rows' => $this->view->result,
'mapping' => $this->define_mapping(),
));
}