You are here

function node_noindex_content_extra_fields in Node Noindex 6

Implementation of hook_content_extra_fields().

File

./node_noindex.module, line 109

Code

function node_noindex_content_extra_fields($type_name) {
  $fields['node_noindex'] = array(
    'label' => t('Search engine settings'),
    'description' => t('Node noindex module form.'),
    'weight' => 100,
  );
  return $fields;
}