weblinks.inc in Node import 5
Support file for the weblinks module.
File
supported/weblinks.incView 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
Name | Description |
---|---|
weblinks_node_import_fields | Implementation of hook_node_import_fields(). |