eZ\Publish\Core\Repository\Values\Content\TranslationValues::setField PHP Method

setField() public method

Adds a translated field to the field collection in the given language This method is also be implemented by ArrayAccess so that $fields[$fieldDefIdentifier] = $value is an equivalent call.
public setField ( string $fieldDefIdentifier, mixed $value )
$fieldDefIdentifier string the identifier of the field definition
$value mixed Either a plain value which is understandable by the field type or an instance of a Value class provided by the field type
    public function setField($fieldDefIdentifier, $value)
    {
        // @todo: implement
    }
TranslationValues