You are here

function xmlsitemap_node_content_extra_fields in XML sitemap 6.2

Implements hook_content_extra_fields().

This is so that the XML sitemap fieldset is sortable on the node edit form.

File

xmlsitemap_node/xmlsitemap_node.module, line 132

Code

function xmlsitemap_node_content_extra_fields() {
  $extras['xmlsitemap'] = array(
    'label' => t('XML sitemap'),
    'description' => t('XML sitemap module form'),
    'weight' => 30,
  );
  return $extras;
}