eZ\Publish\Core\REST\Common\FieldTypeProcessor::preProcessFieldSettingsHash PHP Метод

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

This method is called by the REST input parsers to allow a field type to pre process the given $incomingSettingsHash before it is handled by {@link eZ\Publish\SPI\FieldType\FieldType::fieldSettingsFromHash()}. The $incomingSettingsHash can be expected to conform to the rules that need to apply to hashes accepted by fieldSettingsFromHash(). The return value of this method replaces the $incomingSettingsHash.
См. также: eZ\Publish\Core\REST\Common\Input\FieldTypeParser
public preProcessFieldSettingsHash ( mixed $incomingSettingsHash ) : mixed
$incomingSettingsHash mixed
Результат mixed Pre processed hash
    public function preProcessFieldSettingsHash($incomingSettingsHash)
    {
        return $incomingSettingsHash;
    }