Projet

Général

Profil

Paste
Télécharger (2,22 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / advanced_forum / styles / naked / advanced-forum.naked.group-topic-list-outer-view.tpl.php @ c169e7c4

1
<?php
2
/**
3
 * @file views-view.tpl.php
4
 * Main view template
5
 *
6
 * Variables available:
7
 * - $css_name: A css-safe version of the view name.
8
 * - $header: The view header
9
 * - $footer: The view footer
10
 * - $rows: The results of the view query, if any
11
 * - $empty: The empty text to display if the view is empty
12
 * - $pager: The pager next/prev links to display, if any
13
 * - $exposed: Exposed widget form/info to display
14
 * - $feed_icon: Feed icon to display, if any
15
 * - $more: A link to view more, if any
16
 * - $admin_links: A rendered list of administrative links
17
 * - $admin_links_raw: A list of administrative links suitable for theme('links')
18
 * - $forum_description: Forum description
19
 *
20
 * @ingroup views_templates
21
 */
22
?>
23

    
24
<div class="<?php print $classes; ?>">
25
  <?php if (!empty($admin_links)): ?>
26
    <div class="views-admin-links views-hide">
27
      <?php print $admin_links; ?>
28
    </div>
29
  <?php endif; ?>
30
  <?php if ($header): ?>
31
    <div class="view-header">
32
      <?php print $header; ?>
33
    </div>
34
  <?php endif; ?>
35

    
36
  <?php if ($exposed): ?>
37
    <div class="view-filters">
38
      <?php print $exposed; ?>
39
    </div>
40
  <?php endif; ?>
41

    
42
  <?php if ($attachment_before): ?>
43
    <div class="attachment attachment-before">
44
      <?php print $attachment_before; ?>
45
    </div>
46
  <?php endif; ?>
47

    
48
  <?php if ($pager): ?>
49
    <div class="forum-pager" id="forum-pager-top"><?php print $pager; ?></div>
50
  <?php endif; ?>
51

    
52
  <?php if ($rows): ?>
53
    <div class="view-content">
54
      <?php print $rows; ?>
55
    </div>
56
  <?php elseif ($empty): ?>
57
    <div class="view-empty">
58
      <?php print $empty; ?>
59
    </div>
60
  <?php endif; ?>
61

    
62
  <?php if ($pager): ?>
63
    <div class="forum-pager" id="forum-pager-bottom"><?php print $pager; ?></div>
64
  <?php endif; ?>
65

    
66
  <?php print $topic_legend; ?>
67

    
68
  <?php if ($attachment_after): ?>
69
    <div class="attachment attachment-after">
70
      <?php print $attachment_after; ?>
71
    </div>
72
  <?php endif; ?>
73

    
74
  <?php if ($more): ?>
75
    <?php print $more; ?>
76
  <?php endif; ?>
77

    
78
  <?php if ($footer): ?>
79
    <div class="view-footer">
80
      <?php print $footer; ?>
81
    </div>
82
  <?php endif; ?>
83

    
84
  <?php if ($feed_icon): ?>
85
    <div class="feed-icon">
86
      <?php print $feed_icon; ?>
87
    </div>
88
  <?php endif; ?>
89

    
90
</div> <?php /* class view */ ?>