PartKeepr\ImportBundle\Configuration\FieldConfiguration::import PHP Method

import() public method

public import ( $row )
    public function import($row)
    {
        switch ($this->fieldConfiguration) {
            case self::FIELDCONFIGURATION_FIXEDVALUE:
                $this->log(sprintf("Would set field %s to fixed value %s", $this->fieldName, $this->fixedValue));
                return $this->fixedValue;
                break;
            case self::FIELDCONFIGURATION_COPYFROM:
                $this->log(sprintf("Would set field %s to value %s (import column %s)", $this->fieldName, $row[$this->copyFromField], $this->copyFromField));
                return $row[$this->copyFromField];
                break;
            default:
                return null;
        }
    }