You are here

links_weblink.inc in Node import 5

Support file for links_weblink module (from the links module package).

File

supported/links_weblink.inc
View source
<?php

/**
 * @file
 * Support file for links_weblink module (from the links module package).
 */

/**
 * Implementation of hook_node_import_fields().
 */
function links_weblink_node_import_fields($type) {
  if ($type == 'weblink') {
    return array(
      'links_weblink_url' => t('Weblink URL'),
    );
  }
}

Functions