1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- function hook_xmlsitemap_link_info() {
- return array(
- 'mymodule' => array(
- 'purge' => TRUE,
- ),
- );
- }
- function hook_xmlsitemap_links() {
- $links = array();
- $links[] = array(
- 'type' => 'mymodule',
- 'id' => 1,
- 'loc' => 'mymodule/menu/path',
- 'lastmod' => 346245692,
- 'changefreq' => 4600,
- );
- return $links;
- }
- function hook_xmlsitemap_links_batch_info() {
- return array(
- 'current' => 0,
-
- 'max' => db_query("SELECT COUNT(id) FROM {mymodule}")->fetchField(),
-
- );
- }
- function hook_xmlsitemap_link_alter(&$link) {
- if ($link['type'] == 'mymodule') {
- $link['priority'] += 0.5;
- }
- }
|