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

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_aggregator_wrapper()

4 theme calls to aggregator-wrapper.tpl.php
aggregator_page_categories in drupal-7.x/modules/aggregator/aggregator.pages.inc
Page callback: Displays all the categories used by the Aggregator module.
aggregator_page_sources in drupal-7.x/modules/aggregator/aggregator.pages.inc
Page callback: Displays all the feeds used by the aggregator.
theme_aggregator_categorize_items in drupal-7.x/modules/aggregator/aggregator.pages.inc
Returns HTML for the aggregator page list form for assigning categories.
_aggregator_page_list in drupal-7.x/modules/aggregator/aggregator.pages.inc
Prints an aggregator page listing a number of feed items.

File

drupal-7.x/modules/aggregator/aggregator-wrapper.tpl.php
View source
  1. <?php
  2. /**
  3. * @file
  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_aggregator_wrapper()
  12. *
  13. * @ingroup themeable
  14. */
  15. ?>
  16. <div id="aggregator">
  17. <?php print $content; ?>
  18. <?php print $pager; ?>
  19. </div>

Related topics