Mercurial > hg > rr-repo
annotate modules/forum/forums.tpl.php @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | ff03f76ab3fe |
children |
rev | line source |
---|---|
danielebarchiesi@0 | 1 <?php |
danielebarchiesi@0 | 2 |
danielebarchiesi@0 | 3 /** |
danielebarchiesi@0 | 4 * @file |
danielebarchiesi@0 | 5 * Displays a forum. |
danielebarchiesi@0 | 6 * |
danielebarchiesi@0 | 7 * May contain forum containers as well as forum topics. |
danielebarchiesi@0 | 8 * |
danielebarchiesi@0 | 9 * Available variables: |
danielebarchiesi@0 | 10 * - $forums: The forums to display (as processed by forum-list.tpl.php). |
danielebarchiesi@0 | 11 * - $topics: The topics to display (as processed by forum-topic-list.tpl.php). |
danielebarchiesi@0 | 12 * - $forums_defined: A flag to indicate that the forums are configured. |
danielebarchiesi@0 | 13 * |
danielebarchiesi@0 | 14 * @see template_preprocess_forums() |
danielebarchiesi@0 | 15 * |
danielebarchiesi@0 | 16 * @ingroup themeable |
danielebarchiesi@0 | 17 */ |
danielebarchiesi@0 | 18 ?> |
danielebarchiesi@0 | 19 <?php if ($forums_defined): ?> |
danielebarchiesi@0 | 20 <div id="forum"> |
danielebarchiesi@0 | 21 <?php print $forums; ?> |
danielebarchiesi@0 | 22 <?php print $topics; ?> |
danielebarchiesi@0 | 23 </div> |
danielebarchiesi@0 | 24 <?php endif; ?> |