Projet

Général

Profil

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

root / drupal7 / sites / all / modules / advanced_forum / styles / naked / advanced-forum.naked.active-poster.tpl.php @ c169e7c4

1
<?php
2

    
3
/**
4
 * @file
5
 * Theme implementation to display information about the most active poster for a forum.
6
 *
7
 * See active-poster-pane.tpl.php in active-poster Pane module for a full list of variables.
8
 */
9
?>
10

    
11
<div class="active-poster">
12
    <div class="active-poster-name">
13
      <?php print $account_name; ?>
14
    </div>
15

    
16
    <?php /* Avatar (has div in variable) */ ?>
17
    <?php if (!empty($picture)): ?>
18
      <?php print $picture; ?>
19
    <?php endif; ?>
20

    
21
    <?php /* Posts */ ?>
22
    <div class="active-poster-posts">
23
      <span class="active-poster-label"><?php print t('Posts'); ?>:</span> <?php print $posts; ?>
24
    </div>
25

    
26
    <?php /* Posts */ ?>
27
    <div class="active-poster-topics">
28
      <span class="active-poster-label"><?php print t('Topics'); ?>:</span> <?php print $topics; ?>
29
    </div>
30

    
31
    <div class="last-post">
32
      <div class="active-poster-label"><?php print t('Last post'); ?></div>
33
      <div class="active-poster-title">
34
        <?php print $last_post_title; ?>
35
      </div>
36
      <div class="active-poster-date">
37
        <span class="active-poster-label"><?php print t('On'); ?>:</span> <?php print $last_post_date; ?>
38
      </div>
39

    
40
    </div>
41
</div>