protected function MigrateSimpleFieldHandler::notNull in Migrate 6.2
Same name and namespace in other branches
- 7.2 plugins/destinations/fields.inc \MigrateSimpleFieldHandler::notNull()
Returns TRUE only for values which are not NULL.
Parameters
$value:
Return value
bool
File
- plugins/
destinations/ fields.inc, line 155 - Support for processing CCK fields
Class
- MigrateSimpleFieldHandler
- Base class for creating field handlers for fields with a single value.
Code
protected function notNull($value) {
return !is_null($value);
}