convertToStorageValue() public method

Converts value of $field to storage value.
public convertToStorageValue ( eZ\Publish\SPI\Persistence\Content\Field $field ) : StorageFieldValue
$field eZ\Publish\SPI\Persistence\Content\Field
return StorageFieldValue
コード例 #1
0
 /**
  * Updates a language copy of a non-translatable field.
  *
  * External data is being copied here as some FieldTypes require original field external data.
  * By default copying falls back to storing, it is upon external storage implementation to override
  * the behaviour as needed.
  *
  * @param \eZ\Publish\SPI\Persistence\Content\Field $field
  * @param \eZ\Publish\SPI\Persistence\Content\Field $updateField
  * @param \eZ\Publish\SPI\Persistence\Content\Field $originalField
  * @param \eZ\Publish\SPI\Persistence\Content $content
  */
 protected function updateCopiedField(Field $field, Field $updateField, Field $originalField, Content $content)
 {
     $field->versionNo = $content->versionInfo->versionNo;
     $field->value = clone $updateField->value;
     $this->contentGateway->updateField($field, $this->mapper->convertToStorageValue($field));
     // If the storage handler returns true, it means that $field value has been modified
     // So we need to update it in order to store those modifications
     // Field converter is called once again via the Mapper
     if ($this->storageHandler->copyFieldData($content->versionInfo, $field, $originalField) === true) {
         $this->contentGateway->updateField($field, $this->mapper->convertToStorageValue($field));
     }
 }
コード例 #2
0
 /**
  * @covers eZ\Publish\Core\Persistence\Legacy\Content\Mapper::convertToStorageValue
  * @covers eZ\Publish\Core\Persistence\Legacy\Content\StorageFieldValue
  */
 public function testConvertToStorageValue()
 {
     $convMock = $this->getMock('eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\FieldValue\\Converter');
     $convMock->expects($this->once())->method('toStorageValue')->with($this->isInstanceOf('eZ\\Publish\\SPI\\Persistence\\Content\\FieldValue'), $this->isInstanceOf('eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\StorageFieldValue'))->will($this->returnValue(new StorageFieldValue()));
     $reg = new Registry(array('some-type' => $convMock));
     $field = new Field();
     $field->type = 'some-type';
     $field->value = new FieldValue();
     $mapper = new Mapper($reg, $this->getLanguageHandler());
     $res = $mapper->convertToStorageValue($field);
     $this->assertInstanceOf('eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\StorageFieldValue', $res);
 }