You are here

function feeds_theme in Feeds 8.3

Same name and namespace in other branches
  1. 8.2 feeds.module \feeds_theme()
  2. 6 feeds.module \feeds_theme()
  3. 7.2 feeds.module \feeds_theme()
  4. 7 feeds.module \feeds_theme()

Implements hook_theme().

File

./feeds.module, line 111
Feeds hook implementations.

Code

function feeds_theme() {
  return [
    'feeds_feed_status' => [
      'variables' => [
        'progress_importing' => NULL,
        'progress_clearing' => NULL,
        'imported' => NULL,
        'count' => NULL,
      ],
      'file' => 'feeds.theme.inc',
    ],
    'feeds_feed' => [
      'render element' => 'elements',
      'template' => 'feeds_feed',
    ],
  ];
}