00001 <?php
00002
00003
00033 ?>
00034 <table id="forum-<?php print $forum_id; ?>">
00035 <thead>
00036 <tr>
00037 <th><?php print t('Forum'); ?></th>
00038 <th><?php print t('Topics');?></th>
00039 <th><?php print t('Posts'); ?></th>
00040 <th><?php print t('Last post'); ?></th>
00041 </tr>
00042 </thead>
00043 <tbody>
00044 <?php foreach ($forums as $child_id => $forum): ?>
00045 <tr id="forum-list-<?php print $child_id; ?>" class="<?php print $forum->zebra; ?>">
00046 <td <?php print $forum->is_container ? 'colspan="4" class="container"' : 'class="forum"'; ?>>
00047 <?php
00048
00049
00050 ?>
00051 <?php print str_repeat('<div class="indent">', $forum->depth); ?>
00052 <div class="name"><a href="<?php print $forum->link; ?>"><?php print $forum->name; ?></a></div>
00053 <?php if ($forum->description): ?>
00054 <div class="description"><?php print $forum->description; ?></div>
00055 <?php endif; ?>
00056 <?php print str_repeat('</div>', $forum->depth); ?>
00057 </td>
00058 <?php if (!$forum->is_container): ?>
00059 <td class="topics">
00060 <?php print $forum->num_topics ?>
00061 <?php if ($forum->new_topics): ?>
00062 <br />
00063 <a href="<?php print $forum->new_url; ?>"><?php print $forum->new_text; ?></a>
00064 <?php endif; ?>
00065 </td>
00066 <td class="posts"><?php print $forum->num_posts ?></td>
00067 <td class="last-reply"><?php print $forum->last_reply ?></td>
00068 <?php endif; ?>
00069 </tr>
00070 <?php endforeach; ?>
00071 </tbody>
00072 </table>