menu_node_edit_content_extra_fields($type_name = NULL)Implements hook_content_extra_fields()
CCK hook to allow sorting of the domain settings field.
./menu_node_edit.module, line 865
<?php
function menu_node_edit_content_extra_fields($type_name = NULL) {
if (!empty($type_name)) {
return array(
'menu_node_edit' => array(
'label' => t('Menu node edit'),
'description' => t('Assign posts to a menu access section.'),
'weight' => -1,
),
);
}
}
?>