You are here

function views_atom_theme in Views Atom 6

Same name and namespace in other branches
  1. 7 views_atom.module \views_atom_theme()

Implementation of hook_theme().

File

./views_atom.module, line 17

Code

function views_atom_theme() {
  return array(
    'views_atom_fields_item' => array(
      'arguments' => array(
        'content' => '',
        'view' => NULL,
        'item' => NULL,
      ),
      'file' => 'views_atom.theme.inc',
      'path' => drupal_get_path('module', 'views_atom') . '/theme',
      'template' => 'views-atom-fields-item',
    ),
    'views_rss_feed_icon' => array(
      'arguments' => array(
        'url',
        'title',
        'icon',
      ),
      'file' => 'views_atom.theme.inc',
    ),
  );
}