You are here

function links_weblink_node_import_fields in Node import 5

Implementation of hook_node_import_fields().

File

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

Code

function links_weblink_node_import_fields($type) {
  if ($type == 'weblink') {
    return array(
      'links_weblink_url' => t('Weblink URL'),
    );
  }
}