Same name and namespace in other branches
  1. 6.x-3.x theme/theme.inc \theme_views_view_field()

Display a single views field.

$field->field_alias says what the raw value in $row will be, like this:

$row->{$field->field_alias};

File

theme/theme.inc, line 349
Preprocessors and helper functions to make theming easier.

Code

function theme_views_view_field($vars) {
  return $vars['output'];
}