protected function MigrateNodeReferenceFieldHandler::notNull in Migrate 7.2
Returns TRUE only for values which are not NULL.
Parameters
$value:
Return value
bool
Overrides MigrateSimpleFieldHandler::notNull
File
- plugins/
destinations/ fields.inc, line 930 - Support for processing entity fields
Class
Code
protected function notNull($value) {
return !is_null($value) && $value !== FALSE;
}