PHP Interface Storm\Core\Mapping\IEntityPropertyToOneRelationMapping

Author: Elliot Levin ([email protected])
Inheritance: extends Storm\Core\Mapping\IPropertyMapping
Datei anzeigen Open project: timetoogo/penumbra

Public Methods

Method Description
AddToRelationalRequest ( DomainDatabaseMap $DomainDatabaseMap, Request $RelationalRequest ) : void Adds any constraints and/or properties to the reqeuest required for loading the relation.
GetEntityProperty ( ) : Object\IEntityProperty The mapped entity property.
GetToOneRelation ( ) : Storm\Core\Relational\IToOneRelation The mapped to one relation.
Persist ( Transaction $Transaction, ResultRow $ParentData, RelationshipChange $RelationshipChange ) : void This method should be implemented such that it saves the relationship between the parent data and related data in the supplied transaction.
Revive ( DomainDatabaseMap $DomainDatabaseMap, array $ResultRowArray, array $RevivalDataArray ) : void This method should be implemented such that it sets the revival data of the mapped property with the appropriate data to revive the related entity.

Method Details

AddToRelationalRequest() public method

Adds any constraints and/or properties to the reqeuest required for loading the relation.
public AddToRelationalRequest ( DomainDatabaseMap $DomainDatabaseMap, Request $RelationalRequest ) : void
$DomainDatabaseMap DomainDatabaseMap The parent domain database map
$RelationalRequest Storm\Core\Relational\Request The request to map to
return void

GetEntityProperty() public method

The mapped entity property.
public GetEntityProperty ( ) : Object\IEntityProperty
return Object\IEntityProperty

GetToOneRelation() public method

The mapped to one relation.
public GetToOneRelation ( ) : Storm\Core\Relational\IToOneRelation
return Storm\Core\Relational\IToOneRelation

Persist() public method

This method should be implemented such that it saves the relationship between the parent data and related data in the supplied transaction.
public Persist ( Transaction $Transaction, ResultRow $ParentData, RelationshipChange $RelationshipChange ) : void
$Transaction Storm\Core\Relational\Transaction The transaction context
$ParentData Storm\Core\Relational\ResultRow The column data of the parent
$RelationshipChange Storm\Core\Relational\RelationshipChange The change in the relationship state
return void

Revive() public method

This method should be implemented such that it sets the revival data of the mapped property with the appropriate data to revive the related entity.
public Revive ( DomainDatabaseMap $DomainDatabaseMap, array $ResultRowArray, array $RevivalDataArray ) : void
$DomainDatabaseMap DomainDatabaseMap The parent domain database map
$ResultRowArray array
$RevivalDataArray array
return void