views-view-field.tpl.php 796 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @file
  4. * This template is used to print a single field in a view.
  5. *
  6. * It is not actually used in default Views, as this is registered as a theme
  7. * function which has better performance. For single overrides, the template is
  8. * perfectly okay.
  9. *
  10. * Variables available:
  11. * - $view: The view object
  12. * - $field: The field handler object that can process the input
  13. * - $row: The raw SQL result that can be used
  14. * - $output: The processed output that will normally be used.
  15. *
  16. * When fetching output from the $row, this construct should be used:
  17. * $data = $row->{$field->field_alias}
  18. *
  19. * The above will guarantee that you'll always get the correct data,
  20. * regardless of any changes in the aliasing that might happen if
  21. * the view is modified.
  22. */
  23. ?>
  24. <?php print $output; ?>