/[drupal]/contributions/themes/TVframe/views-view-fields--og-members-block--block-2.tpl.php
ViewVC logotype

Contents of /contributions/themes/TVframe/views-view-fields--og-members-block--block-2.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Wed Mar 4 22:22:57 2009 UTC (8 months, 3 weeks ago) by kreynen
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
Changes since 1.2: +0 -0 lines
File MIME type: text/x-php
fixed sub-sub theme issues
1 <?php
2 // $Id: views-view-fields.tpl.php,v 1.6 2008/09/24 22:48:21 merlinofchaos Exp $
3 /**
4 * @file views-view-fields.tpl.php
5 * Default simple view template to all the fields as a row.
6 *
7 * - $view: The view in use.
8 * - $fields: an array of $field objects. Each one contains:
9 * - $field->content: The output of the field.
10 * - $field->raw: The raw data for the field, if it exists. This is NOT output safe.
11 * - $field->class: The safe class id to use.
12 * - $field->handler: The Views field handler object controlling this field. Do not use
13 * var_export to dump this object, as it can't handle the recursion.
14 * - $field->inline: Whether or not the field should be inline.
15 * - $field->inline_html: either div or span based on the above flag.
16 * - $field->separator: an optional separator that may appear before a field.
17 * - $row: The raw result object from the query, with all data it fetched.
18 *
19 * @ingroup views_templates
20 */
21 ?>
22
23 <span class="views-field-picture">
24 <?php print $fields['picture']->content; ?>
25 </span>
26
27 <span class="views-field-name">
28 <?php print $fields['name']->content; ?>
29 </span>

  ViewVC Help
Powered by ViewVC 1.1.2