function template_preprocess_views_view_field

Same name in other branches
  1. 7.x-3.x theme/theme.inc \template_preprocess_views_view_field()

Process a single field within a view.

This preprocess function isn't normally run, as a function is used by default, for performance. However, by creating a template, this preprocess should get picked up.

File

theme/theme.inc, line 316

Code

function template_preprocess_views_view_field(&$vars) {
    $vars['output'] = $vars['field']->advanced_render($vars['row']);
}