Same filename and directory in other branches
  1. 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()

3 theme calls to aggregator-wrapper.tpl.php
aggregator_page_categories in modules/aggregator/aggregator.pages.inc
Page callback: Displays all the categories used by the Aggregator module.
aggregator_page_sources in modules/aggregator/aggregator.pages.inc
Page callback: Displays all the feeds used by the aggregator.
theme_aggregator_categorize_items in modules/aggregator/aggregator.pages.inc
Returns HTML for the aggregator page list form for assigning categories.

File

modules/aggregator/aggregator-wrapper.tpl.php
View source
<?php

/**
 * @file
 * 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_aggregator_wrapper()
 *
 * @ingroup themeable
 */
?>
<div id="aggregator">
  <?php

print $content;
?>
  <?php

print $pager;
?>
</div>

Related topics