function 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 362

Code

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