You are here

advf-forum-topic-list.tpl.php in Advanced Forum 5

Theme implementation to display a list of forum topics.

Available variables:

  • $header: The table header. This is pre-generated with click-sorting information. If you need to change this, see template_preprocess_forum_topic_list().
  • $pager: The pager to display beneath the table.
  • $topics: An array of topics to be displayed.
  • $topic_id: Numeric id for the current forum topic.
  • $forum_description: Description of the forum these topics are in.

Each $topic in $topics contains:

  • $topic->icon: The icon to display.
  • $topic->moved: A flag to indicate whether the topic has been moved to another forum.
  • $topic->title: The title of the topic. Safe to output.
  • $topic->message: If the topic has been moved, this contains an explanation and a link.
  • $topic->zebra: 'even' or 'odd' string used for row class.
  • $topic->sticky_class: 'sticky-topic' or 'first-not-sticky' or 'not-sticky'
  • $topic->num_comments: The number of replies on this topic.
  • $topic->new_replies: A flag to indicate whether there are unread comments.
  • $topic->new_url: If there are unread replies, this is a link to them.
  • $topic->new_text: Text containing the translated, properly pluralized count.
  • $topic->created: An outputtable string represented when the topic was posted.
  • $topic->last_reply: An outputtable string representing when the topic was last replied to.
  • $topic->timestamp: The raw timestamp this topic was posted.
  • $topic->new: 1 if this is a new/updated topic for the current user.

File

styles/blue_lagoon/advf-forum-topic-list.tpl.php
View source
<?php

/**
 * @file
 * Theme implementation to display a list of forum topics.
 *
 * Available variables:
 * - $header: The table header. This is pre-generated with click-sorting
 *   information. If you need to change this, see template_preprocess_forum_topic_list().
 * - $pager: The pager to display beneath the table.
 * - $topics: An array of topics to be displayed.
 * - $topic_id: Numeric id for the current forum topic.
 * - $forum_description: Description of the forum these topics are in.
 *
 * Each $topic in $topics contains:
 * - $topic->icon: The icon to display.
 * - $topic->moved: A flag to indicate whether the topic has been moved to
 *   another forum.
 * - $topic->title: The title of the topic. Safe to output.
 * - $topic->message: If the topic has been moved, this contains an
 *   explanation and a link.
 * - $topic->zebra: 'even' or 'odd' string used for row class.
 * - $topic->sticky_class: 'sticky-topic' or 'first-not-sticky' or 'not-sticky'
 * - $topic->num_comments: The number of replies on this topic.
 * - $topic->new_replies: A flag to indicate whether there are unread comments.
 * - $topic->new_url: If there are unread replies, this is a link to them.
 * - $topic->new_text: Text containing the translated, properly pluralized count.
 * - $topic->created: An outputtable string represented when the topic was posted.
 * - $topic->last_reply: An outputtable string representing when the topic was
 *   last replied to.
 * - $topic->timestamp: The raw timestamp this topic was posted.
 * - $topic->new: 1 if this is a new/updated topic for the current user.
 *
 * @see template_preprocess_forum_topic_list()
 * @see advanced_forum_preprocess_forum_topic_list()
 */
?>

<?php

print $pager;
?>

<table id="forum-topic-<?php

print $topic_id;
?>" class="forum-topics">
  <thead>
    <tr><?php

print $header;
?></tr>
  </thead>

  <tbody>
  <?php

foreach ($topics as $topic) {
  ?>
    <?php

  if ($topic->sticky) {

    // Extra label on sticky topics
    $topic->title = t('Sticky') . ': ' . $topic->title;
  }
  ?>

    <?php


  // Add "new" or "updated" to title where appropriate.
  $topic_new = "";
  if ($topic->new) {
    if ($topic->new_replies > 0) {
      $topic_new = ' <span class="marker">' . t('updated') . '</span>';
    }
    else {
      $topic_new = ' <span class="marker">' . t('new') . '</span>';
    }
  }
  ?>

    <tr class="<?php

  print $topic->zebra;
  ?> <?php

  print $topic->sticky_class;
  ?>">
      <td class="icon"><div class="forum-icon"><?php

  print $topic->icon;
  ?></div></td>

      <td class="title">
      <?php

  print $topic->title . $topic_new;
  ?>
      <?php

  if (!empty($topic->pager)) {
    ?>
         <div class="forum-topic-pager"> <?php

    print $topic->pager;
    ?> </div>
      <?php

  }
  ?>
      </td>

      <?php

  if ($topic->moved) {
    ?>
        <td colspan="3">
        <?php

    print $topic->message;
    ?>
        </td>
      <?php

  }
  else {
    ?>
        <td class="replies">
          <div class="num num-replies"><?php

    print $topic->num_comments;
    ?></div>
          <?php

    if ($topic->new_replies) {
      ?>
            <div class="num num-new-replies"><a href="<?php

      print $topic->new_url;
      ?>"><?php

      print $topic->new_text;
      ?></a></div>
          <?php

    }
    ?>
        </td>

      <?php

    if (module_exists('statistics')) {
      ?>
        <td class="views"><?php

      print $topic->views;
      ?> </td>
      <?php

    }
    ?>

      <?php

    if (!variable_get('advanced_forum_hide_created', 0)) {
      ?>
        <td class="created"><?php

      print $topic->created;
      ?></td>
      <?php

    }
    ?>

      <td class="last-reply"><?php

    print $topic->last_reply;
    ?></td>
    <?php

  }
  ?>
    </tr>
  <?php

}
?>
  </tbody>
</table>
<?php

if (!empty($topic_legend)) {
  ?>
  <?php

  print $topic_legend;
}
print $pager;