aggregator-wrapper.tpl.php

  1. drupal
    1. 6 modules/aggregator/aggregator-wrapper.tpl.php
    2. 7 modules/aggregator/aggregator-wrapper.tpl.php
    3. 8 core/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

File

core/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 class="<?php print $classes; ?>">
  17. <?php print $content; ?>
  18. <?php print $pager; ?>
  19. </div>

Related topics

Login or register to post comments