aggregator-wrapper.tpl.php

  1. 7.x drupal-7.x/modules/aggregator/aggregator-wrapper.tpl.php
  2. 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()

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.php
View source
  1. <?php
  2. /**
  3. * @file comment-wrapper.tpl.php
  4. * Default theme implementation to wrap aggregator content.
  5. *
  6. * Available variables:
  7. * - $content: All aggregator content.
  8. * - $page: Pager links rendered through theme_pager().
  9. *
  10. * @see template_preprocess()
  11. * @see template_preprocess_comment_wrapper()
  12. */
  13. ?>
  14. <div id="aggregator">
  15. <?php print $content; ?>
  16. <?php print $pager; ?>
  17. </div>