Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation for a single field in a view. Chris@0: * Chris@0: * Available variables: Chris@0: * - view: The view that the field belongs to. Chris@0: * - field: The field handler that can process the input. Chris@0: * - row: The raw result of the database query that generated this field. Chris@0: * - output: The processed output that will normally be used. Chris@0: * Chris@0: * When fetching output from the row this construct should be used: Chris@0: * data = row[field.field_alias] Chris@0: * Chris@0: * The above will guarantee that you'll always get the correct data, regardless Chris@0: * of any changes in the aliasing that might happen if the view is modified. Chris@0: * Chris@0: * @see template_preprocess_views_view_field() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {{ output -}}