diff --git a/private.module b/private.module
index f9e1d2a..619c53e 100644
--- private.module
+++ private.module
@@ -327,4 +327,21 @@ function private_views_api() {
     'api' => 2,
     'path' => drupal_get_path('module', 'private'),
   );
+}
+
+/**
+ * Implementation of hook_content_extra_fields().
+ */
+function private_content_extra_fields($type_name) {
+  $fields = array();
+  $privacy = variable_get('private_' . $type_name, 0);
+  $visible = $privacy != PRIVATE_DISABLED && $privacy != PRIVATE_ALWAYS;
+  if ($visible) {
+    $fields['privacy_settings'] = array(
+      'label' => t('Privacy settings'),
+      'description' => t('Private module form.'),
+      'weight' => 26
+    );
+  }
+  return $fields;
 }
\ No newline at end of file
