You are here

public function views_plugin_style_mapping::render in Views (for Drupal 7) 7.3

Render the display in this style.

Overrides views_plugin_style::render

File

plugins/views_plugin_style_mapping.inc, line 115
Definition of views_plugin_style_mapping.

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(),
  ));
}