You are here

function userlink_node_import_fields in Node import 5

Implementation of hook_node_import_fields().

File

supported/userlink.inc, line 20
Support file for userlink module (from the links module package).

Code

function userlink_node_import_fields($type) {
  if ($type == 'userlink') {
    return array(
      'title' => t('Title'),
      'body' => t('Body'),
      'url' => t('Userlink: URL'),
      'private' => t('Userlink: Private'),
    );
  }
}