function feedapi_theme in FeedAPI 6
Implementation of hook_theme().
File
- ./
feedapi.module, line 43  - Handle the submodules (for feed and item processing) Provide a basic management of feeds
 
Code
function feedapi_theme() {
  return array(
    'feedapi_export_opml' => array(
      'arguments' => array(
        'feeds' => NULL,
      ),
    ),
  );
}