function theme_views_view_field

Display a single views field.

Interesting bits of info: $field->field_alias says what the raw value in $row will be. Reach it like this:

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

File

drupal/core/modules/views/views.theme.inc, line 379
Preprocessors and helper functions to make theming easier.

Code

function theme_views_view_field($vars) {
  $view = $vars['view'];
  $field = $vars['field'];
  $row = $vars['row'];
  return $vars['output'];
}