Projet

Général

Profil

Paste
Télécharger (1,64 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / advanced_forum / styles / naked / advanced-forum.naked.search-result.tpl.php @ 13c3c9b4

1
<?php
2
/**
3
 * @file
4
 * Style a single search result in the forum and topic search views.
5
 *
6
 * - $view: The view in use.
7
 * - $fields: an array of $field objects. Each one contains:
8
 *   - $field->content: The output of the field.
9
 *   - $field->raw: The raw data for the field, if it exists. This is NOT output safe.
10
 *   - $field->class: The safe class id to use.
11
 *   - $field->handler: The Views field handler object controlling this field. Do not use
12
 *     var_export to dump this object, as it can't handle the recursion.
13
 *   - $field->inline: Whether or not the field should be inline.
14
 *   - $field->inline_html: either div or span based on the above flag.
15
 *   - $field->separator: an optional separator that may appear before a field.
16
 * - $row: The raw result object from the query, with all data it fetched.
17
 */
18
?>
19

    
20
<div class="forum-search-result">
21
  <?php foreach ($fields as $id => $field): ?>
22
    <?php if (!empty($field->separator)): ?>
23
      <?php print $field->separator; ?>
24
    <?php endif; ?>
25

    
26
    <<?php print $field->inline_html;?> class="views-field-<?php print $field->class; ?>">
27
      <?php if ($field->label): ?>
28
        <label class="views-label-<?php print $field->class; ?>">
29
          <?php print $field->label; ?>:
30
        </label>
31
      <?php endif; ?>
32
        <?php
33
        /* $field->element_type is either SPAN or DIV depending upon whether or not
34
        the field is a 'block' element type or 'inline' element type. */
35
        ?>
36
        <<?php print $field->element_type; ?> class="field-content"><?php print $field->content; ?></<?php print $field->element_type; ?>>
37
    </<?php print $field->inline_html;?>>
38
  <?php endforeach; ?>
39
</div>