You are here

function weblinks_node_import_fields in Node import 5

Implementation of hook_node_import_fields().

File

supported/weblinks.inc, line 11
Support file for the weblinks module.

Code

function weblinks_node_import_fields($type) {
  if ($type == 'weblinks') {
    return array(
      'url' => t('Web link: URL'),
      'weight' => t('Web link: weight'),
    );
  }
}