You are here

function protected_node_content_extra_fields in Protected Node 6

Add the Protected Node fieldset to the CCK.

File

./protected_node.module, line 844

Code

function protected_node_content_extra_fields($type_name) {
  $extra = array();
  $extra['protected_node'] = array(
    'label' => t('Protected node'),
    'description' => t('Protected node module form.'),
    'weight' => 20,
  );
  return $extra;
}