You are here

protected function MigrateUserReferenceFieldHandler::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 945
Support for processing entity fields

Class

MigrateUserReferenceFieldHandler

Code

protected function notNull($value) {
  return !is_null($value) && $value !== FALSE;
}