- drupal
Default theme implementation to display a forum which may contain forum containers as well as forum topics.
Variables available:
- $forums: The forums to display (as processed by forum-list.tpl.php)
- $topics: The topics to display (as processed by forum-topic-list.tpl.php)
- $forums_defined: A flag to indicate that the forums are configured.
See also
1 theme call to forums.tpl.php
File
modules/forum/forums.tpl.phpView source
- <?php
-
- /**
- * @file
- * Default theme implementation to display a forum which may contain forum
- * containers as well as forum topics.
- *
- * Variables available:
- * - $forums: The forums to display (as processed by forum-list.tpl.php)
- * - $topics: The topics to display (as processed by forum-topic-list.tpl.php)
- * - $forums_defined: A flag to indicate that the forums are configured.
- *
- * @see template_preprocess_forums()
- * @see theme_forums()
- */
- ?>
- <?php if ($forums_defined): ?>
- <div id="forum">
- <?php print $forums; ?>
- <?php print $topics; ?>
- </div>
- <?php endif; ?>
-