Tracking

A trait for entities which can track changes.

trait Tracking
Copyright
2015-2016 Appertly
Since
0.5.1
License
Apache-2.0

Instance Properties

Protected
NameTypeSummary
$changesMap<string,Map<string,mixed>>

Changes to persist.

Instance Methods

Public
ReturnsSignature and Description
ConstMap<string,Map<string,mixed>>

Gets the pending changes.

bool

Whether the object has any changes.

Protected
ReturnsSignature and Description
this
aggregateChanges(Modifiable $child, string $field)

Takes all the changes from a Modifiable and copies them under a field name.

this
fieldIncrement(string $field, int $value = 1)

Sets a field for increment.

this
fieldNow(string $field)

Sets a field to the current date.

this
fieldPull(string $field, mixed $value)

Pulls a value from a array field.

this
fieldPush(string $field, mixed $value)

Pushes a value onto a field.

this
fieldPushAll(string $field, ConstVector<mixed> $value)

Pushes a value onto an array field.

this
fieldSet(string $field, mixed $value)

Sets a field for update.

this
fieldUnset(string $field)

Sets a field for removal.

Property Details

$changes

protected Map<string,Map<string,mixed>> $changes

Changes to persist.

Method Details

aggregateChanges

protected function aggregateChanges(Modifiable $child, string $field)

Takes all the changes from a Modifiable and copies them under a field name.

Parameters
NameTypeDescription
$childModifiable

The object containing updates

$fieldstring

The field name

Returns
TypeDescription
this

provides a fluent interface

fieldIncrement

protected function fieldIncrement(string $field, int $value = 1)

Sets a field for increment.

Parameters
NameTypeDescription
$fieldstring

The field name

$valueint

Optional. The increment value. Default is 1.

Returns
TypeDescription
this

provides a fluent interface

fieldNow

protected function fieldNow(string $field)

Sets a field to the current date.

Parameters
NameTypeDescription
$fieldstring

The field name

Returns
TypeDescription
this

provides a fluent interface

fieldPull

protected function fieldPull(string $field, mixed $value)

Pulls a value from a array field.

In addition to a single value, you can also specify a query document.

$this->fieldPull('vegetables', 'carrot');
$this->fieldPull('listOfDocs', ['foo' => 'bar']);
Parameters
NameTypeDescription
$fieldstring

The field name

$valuemixed

The value to pull

Returns
TypeDescription
this

provides a fluent interface

fieldPush

protected function fieldPush(string $field, mixed $value)

Pushes a value onto a field.

Parameters
NameTypeDescription
$fieldstring

The field name

$valuemixed

The value to push

Returns
TypeDescription
this

provides a fluent interface

fieldPushAll

protected function fieldPushAll(string $field, ConstVector<mixed> $value)

Pushes a value onto an array field.

Parameters
NameTypeDescription
$fieldstring

The field name

$valueConstVector<mixed>

The values to push

Returns
TypeDescription
this

provides a fluent interface

fieldSet

protected function fieldSet(string $field, mixed $value)

Sets a field for update.

Parameters
NameTypeDescription
$fieldstring

The field name

$valuemixed

The field value

Returns
TypeDescription
this

provides a fluent interface

fieldUnset

protected function fieldUnset(string $field)

Sets a field for removal.

Parameters
NameTypeDescription
$fieldstring

The field name

Returns
TypeDescription
this

provides a fluent interface

getChanges

public function getChanges()

Gets the pending changes.

Returns
TypeDescription
ConstMap<string,Map<string,mixed>>

The pending changes

isDirty

public function isDirty()

Whether the object has any changes.

Returns
TypeDescription
bool

Whether the object has any changes