function views_plugin_row_sgrid_style::render in Sortable Grid Views Plugin 7
Render a row object. This usually passes through to a theme template of some form, but not always.
Overrides views_plugin_row::render
File
- ./
views_plugin_row_sgrid_style.inc, line 66 - views_plugin_row_sgrid_style.inc Views row style plugin for Sortable grid module
Class
- views_plugin_row_sgrid_style
- The basic 'fields' row plugin
Code
function render($row) {
return theme($this
->theme_functions(), array(
'view' => $this->view,
'options' => $this->options,
'row' => $row,
'field_alias' => isset($this->field_alias) ? $this->field_alias : '',
));
}