You are here

function feeds_theme in Feeds 7.2

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

Implements hook_theme().

Related topics

File

./feeds.module, line 504
Feeds - basic API functions and hook implementations.

Code

function feeds_theme() {
  return array(
    'feeds_upload' => array(
      'file' => 'feeds.pages.inc',
      'render element' => 'element',
    ),
    'feeds_source_status' => array(
      'file' => 'feeds.pages.inc',
      'variables' => array(
        'progress_importing' => NULL,
        'progress_clearing' => NULL,
        'imported' => NULL,
        'count' => NULL,
      ),
    ),
  );
}