You are here

function aggregator_theme in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/aggregator/aggregator.module \aggregator_theme()

Implements hook_theme().

File

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

Code

function aggregator_theme() {
  return array(
    'aggregator_feed' => array(
      'render element' => 'elements',
      'file' => 'aggregator.theme.inc',
    ),
    'aggregator_item' => array(
      'render element' => 'elements',
      'file' => 'aggregator.theme.inc',
    ),
  );
}