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_aggregator_wrapper()
4 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.
- _aggregator_page_list in modules/
aggregator/ aggregator.pages.inc - Prints an aggregator page listing a number of feed items.
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
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.