function theme_views_view_field

Same name in other branches
  1. 7.x-3.x theme/theme.inc \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

theme/theme.inc, line 304

Code

function theme_views_view_field($view, $field, $row) {
    // Reference safe for PHP 4:
    return $view->field[$field->options['id']]
        ->advanced_render($row);
}