Projet

Général

Profil

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

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

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

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

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

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

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

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

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

    
67
  <?php print $topic_legend; ?>
68

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

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

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

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

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