Sulu\Component\Content\SimpleContentType::exportData PHP Метод

exportData() публичный Метод

public exportData ( $propertyValue )
    public function exportData($propertyValue)
    {
        if (is_bool($propertyValue)) {
            if ($propertyValue) {
                return '1';
            }
            return '';
        }
        if (is_string($propertyValue)) {
            return $propertyValue;
        }
        if (is_string($this->defaultValue)) {
            return $this->defaultValue;
        }
        if (is_bool($this->defaultValue)) {
            if ($this->defaultValue) {
                return '1';
            }
            return '';
        }
        if (is_array($propertyValue)) {
            return json_encode($propertyValue);
        }
        return '';
    }