function node_field_load in Node Field 7.2
Menu node_field loader callback.
2 calls to node_field_load()
- node_field_file_file_download in modules/
node_field_file/ node_field_file.module - Implements hook_file_download().
- node_field_file_node_field_update in modules/
node_field_file/ node_field_file.module - Implements hook_node_field_update().
File
- ./
node_field.module, line 116 - This module provide ability to add extra fields to any single node.
Code
function node_field_load($fid) {
if ($fid) {
return node_field_load_node_field($fid);
}
else {
return FALSE;
}
}