1 views.theme.inc | theme_views_view_field($variables) |
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
- core/
modules/ views/ templates/ views.theme.inc, line 326 - Preprocessors and helper functions to make theme development easier.
Code
function theme_views_view_field($variables) {
$view = $variables['view'];
$field = $variables['field'];
$row = $variables['row'];
return $variables['output'];
}