Jarves\Configuration\Field::mapValues PHP Method

mapValues() public method

public mapValues ( array &$data )
$data array
    public function mapValues(array &$data)
    {
        if ($this->hasFieldType()) {
            return $this->getFieldType()->mapValues($data);
        } else {
            $data[$this->getId()] = $this->getValue();
        }
    }
Field