function aggregator_theme

Implements hook_theme().

File

drupal/core/modules/aggregator/aggregator.module, line 53
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function aggregator_theme() {
  return array(
    'aggregator_feed_source' => array(
      'variables' => array(
        'aggregator_feed' => NULL,
        'view_mode' => 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(
        'aggregator_item' => NULL,
        'view_mode' => NULL,
      ),
      'file' => 'aggregator.pages.inc',
    ),
    'aggregator_item' => array(
      'variables' => array(
        'aggregator_item' => NULL,
        'view_mode' => 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',
    ),
  );
}