You are here

function path_redirect_content_extra_fields in Path redirect 6

Implements hook_content_extra_fields().

This is so that the URL redirect fieldset is sortable on the node edit form.

File

./path_redirect.module, line 185

Code

function path_redirect_content_extra_fields() {
  $extras['path_redirect'] = array(
    'label' => t('URL redirects'),
    'description' => t('Path redirect module listing'),
    'weight' => 30,
  );
  return $extras;
}