function views_atom_theme in Views Atom 7
Same name and namespace in other branches
- 6 views_atom.module \views_atom_theme()
Implements hook_theme().
File
- ./views_atom.module, line 22 
Code
function views_atom_theme() {
  return array(
    'views_atom_fields_item' => array(
      'variables' => array(
        'content' => '',
        'view' => NULL,
        'item' => NULL,
      ),
      'file' => 'views_atom.theme.inc',
      'template' => 'views-atom-fields-item',
    ),
    'views_rss_feed_icon' => array(
      'variables' => array(
        'url',
        'title',
        'icon',
      ),
      'file' => 'views_atom.theme.inc',
    ),
    'views_atom_tombstone' => array(
      'variables' => array(
        'title' => NULL,
        'use_push' => FALSE,
        'hub_url' => NULL,
        'feed_url' => NULL,
        'updated' => array(),
        'show_updated_comment' => TRUE,
        'items' => NULL,
      ),
      'file' => 'views_atom.theme.inc',
      'template' => 'views-atom-tombstone',
    ),
  );
}