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

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

This method is called by the REST output visitors to allow a field type to post process the given $outgoingSettingsHash, which was previously generated using {@link eZ\Publish\SPI\FieldType\FieldType::fieldSettingsToHash()}, before it is sent to the client. The return value of this method replaces $outgoingSettingsHash and must obey to the same rules as the original $outgoingSettingsHash.
См. также: eZ\Publish\Core\REST\Common\Output\FieldTypeSerializer
public postProcessFieldSettingsHash ( mixed $outgoingSettingsHash ) : mixed
$outgoingSettingsHash mixed
Результат mixed Post processed hash
    public function postProcessFieldSettingsHash($outgoingSettingsHash)
    {
        return $outgoingSettingsHash;
    }