xmlsitemap_node_views_style_plugins()
contributions/modules/xmlsitemap/xmlsitemap_node/xmlsitemap_node.module, line 338
Implementation of hook_views_style_plugins().
| Name | Description |
|---|---|
| XML Sitemap | Notify search engines of site updates. |
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',
),
);
}