You are here

function comment_node_import_fields in Node import 5

Same name and namespace in other branches
  1. 6 supported/comment.inc \comment_node_import_fields()

Implementation of hook_node_import_fields().

File

supported/comment.inc, line 6

Code

function comment_node_import_fields($type) {
  $fields = array();
  if (user_access('administer nodes')) {
    $fields = array(
      'comment' => t('Node: Comment options'),
    );
  }
  return $fields;
}