function noderelationships_content_is_empty in Node Relationships 6
Implementation of hook_content_is_empty().
File
- ./
noderelationships.module, line 197 - This is the main script for the noderelationships module. It merely contains the implementation of hooks invoked by Drupal core, CCK, Views, etc. All common functions are externalized into several scripts that are included on demand.
Code
function noderelationships_content_is_empty($item, $field) {
// Back reference fields are not stored in database, so tell CCK they are
// always empty.
return TRUE;
}