xmlsitemap_node_views_style_plugins

Definition

xmlsitemap_node_views_style_plugins()
contributions/modules/xmlsitemap/xmlsitemap_node/xmlsitemap_node.module, line 338

Description

Implementation of hook_views_style_plugins().

Related topics

Namesort iconDescription
XML SitemapNotify search engines of site updates.

Code

function xmlsitemap_node_views_style_plugins() {
  return array(
    'xmlsitemap_sitemap' => array(
      'name' => t('XML Sitemap: Sitemap'),
      'theme' => 'xmlsitemap_node_view_sitemap',
    ),
    'xmlsitemap_news' => array(
      'name' => t('XML Sitemap: News'),
      'theme' => 'xmlsitemap_node_view_news',
    ),
  );
}