You are here

weblinks.inc in Node import 5

Support file for the weblinks module.

File

supported/weblinks.inc
View source
<?php

/**
 * @file
 * Support file for the weblinks module.
 */

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

Functions

Namesort descending Description
weblinks_node_import_fields Implementation of hook_node_import_fields().