Community Documentation

aggregator-wrapper.tpl.php

  1. drupal
    1. 6 aggregator-wrapper.tpl.php
    2. 7 aggregator-wrapper.tpl.php
    3. 8 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()

View source
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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>
Login or register to post comments