1.20.x views_plugin_style_mapping.inc views_plugin_style_mapping::render()

Overrides views_plugin_style::render().

Provides the mapping definition as an available variable.

Overrides views_plugin_style::render

File

modules/views/plugins/views_plugin_style_mapping.inc, line 116
Definition of views_plugin_style_mapping.

Class

views_plugin_style_mapping
Allows fields to be mapped to specific use cases.

Code

function render() {
  return theme($this->theme_functions(), array(
    'view' => $this->view,
    'options' => $this->options,
    'rows' => $this->view->result,
    'mapping' => $this->define_mapping(),
  ));
}