aggregator-wrapper.tpl.php
- 7.x drupal-7.x/modules/aggregator/aggregator-wrapper.tpl.php
- 6.x drupal-6.x/modules/aggregator/aggregator-wrapper.tpl.php
comment-wrapper.tpl.php Default theme implementation to wrap aggregator content.
Available variables:
- $content: All aggregator content.
- $page: Pager links rendered through theme_pager().
See also
template_preprocess_comment_wrapper()
4 theme calls to aggregator-wrapper.tpl.php
- aggregator_page_categories in drupal-6.x/
modules/ aggregator/ aggregator.pages.inc - Menu callback; displays all the categories used by the aggregator.
- aggregator_page_sources in drupal-6.x/
modules/ aggregator/ aggregator.pages.inc - Menu callback; displays all the feeds used by the aggregator.
- theme_aggregator_categorize_items in drupal-6.x/
modules/ aggregator/ aggregator.pages.inc - Theme the page list form for assigning categories.
- _aggregator_page_list in drupal-6.x/
modules/ aggregator/ aggregator.pages.inc - Prints an aggregator page listing a number of feed items.
File
drupal-6.x/modules/aggregator/aggregator-wrapper.tpl.phpView source
- <?php
-
- /**
- * @file comment-wrapper.tpl.php
- * Default theme implementation to wrap aggregator content.
- *
- * Available variables:
- * - $content: All aggregator content.
- * - $page: Pager links rendered through theme_pager().
- *
- * @see template_preprocess()
- * @see template_preprocess_comment_wrapper()
- */
- ?>
- <div id="aggregator">
- <?php print $content; ?>
- <?php print $pager; ?>
- </div>
-