function aggregator_theme

Same name in other branches
  1. 9 core/modules/aggregator/aggregator.module \aggregator_theme()
  2. 8.9.x core/modules/aggregator/aggregator.module \aggregator_theme()

Implements hook_theme().

File

modules/aggregator/aggregator.module, line 50

Code

function aggregator_theme() {
    return array(
        'aggregator_wrapper' => array(
            'variables' => array(
                'content' => NULL,
            ),
            'file' => 'aggregator.pages.inc',
            'template' => 'aggregator-wrapper',
        ),
        'aggregator_categorize_items' => array(
            'render element' => 'form',
            'file' => 'aggregator.pages.inc',
        ),
        'aggregator_feed_source' => array(
            'variables' => array(
                'feed' => NULL,
            ),
            'file' => 'aggregator.pages.inc',
            'template' => 'aggregator-feed-source',
        ),
        'aggregator_block_item' => array(
            'variables' => array(
                'item' => NULL,
                'feed' => 0,
            ),
        ),
        'aggregator_summary_items' => array(
            'variables' => array(
                'summary_items' => NULL,
                'source' => NULL,
            ),
            'file' => 'aggregator.pages.inc',
            'template' => 'aggregator-summary-items',
        ),
        'aggregator_summary_item' => array(
            'variables' => array(
                'item' => NULL,
            ),
            'file' => 'aggregator.pages.inc',
            'template' => 'aggregator-summary-item',
        ),
        'aggregator_item' => array(
            'variables' => array(
                'item' => NULL,
            ),
            'file' => 'aggregator.pages.inc',
            'template' => 'aggregator-item',
        ),
        'aggregator_page_opml' => array(
            'variables' => array(
                'feeds' => NULL,
            ),
            'file' => 'aggregator.pages.inc',
        ),
        'aggregator_page_rss' => array(
            'variables' => array(
                'feeds' => NULL,
                'category' => NULL,
            ),
            'file' => 'aggregator.pages.inc',
        ),
    );
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.