getSimpleRecord ( )
protected

Object simple record.

Returns
array The fields directly hanging from this object.
418  {
419  $record = get_object_vars($this);
420  foreach ($record as $key => $value) {
421  if ($value === NULL) {
422  unset($record[$key]);
423  }
424  }
425  return $record;
426  }