class ActiveRow implements IteratorAggregate, ArrayAccess

Represents database row with support for relations.

ActiveRow is based on the great library NotORM http://www.notorm.com written by Jakub Vrana.

Methods

__construct(array $data, Selection $table)

No description

void
setTable(Selection $table)

No description

getTable()

No description

__toString()

No description

array
toArray()

No description

mixed
getPrimary(bool $throw = true)

Returns primary key value.

string
getSignature(bool $throw = true)

Returns row signature (composition of primary keys).

ActiveRow|null
ref(string $key, string|null $throughColumn = null)

Returns referenced row.

related(string $key, string|null $throughColumn = null)

Returns referencing rows collection.

bool
update(iterable $data)

Updates row data.

int
delete()

Deletes row from database.

getIterator()

No description

void
offsetSet($column, $value)

No description

mixed
offsetGet($column)

No description

bool
offsetExists($column)

No description

void
offsetUnset($column)

No description

void
__set(string $column, mixed $value)

No description

mixed
__get(string $key)

No description

bool
__isset(string $key)

No description

void
__unset(string $key)

No description

bool
accessColumn(string|null $key, bool $selectColumn = true)

No description

void
removeAccessColumn(string $key)

No description

Details

at line 24
__construct(array $data, Selection $table)

No description

Parameters

array $data
Selection $table

at line 32
void setTable(Selection $table)

internal  
 

No description

Parameters

Selection $table

Return Value

void

at line 39
Selection getTable()

internal  
 

No description

Return Value

Selection

at line 45
__toString()

No description

at line 51
array toArray()

No description

Return Value

array

at line 62
mixed getPrimary(bool $throw = true)

Returns primary key value.

Parameters

bool $throw

Return Value

mixed

possible int, string, array, object (Nette\Database\DateTime)

at line 98
string getSignature(bool $throw = true)

Returns row signature (composition of primary keys).

Parameters

bool $throw

Return Value

string

at line 108
ActiveRow|null ref(string $key, string|null $throughColumn = null)

Returns referenced row.

Parameters

string $key
string|null $throughColumn

Return Value

ActiveRow|null

if the row does not exist

Returns referencing rows collection.

Parameters

string $key
string|null $throughColumn

Return Value

GroupedSelection

at line 136
bool update(iterable $data)

Updates row data.

Parameters

iterable $data

Return Value

bool

at line 173
int delete()

Deletes row from database.

Return Value

int

number of affected rows

at line 190
Iterator getIterator()

No description

Return Value

Iterator

at line 200
void offsetSet($column, $value)

No description

Parameters

$column
$value

Return Value

void

at line 206
mixed offsetGet($column)

No description

Parameters

$column

Return Value

mixed

at line 212
bool offsetExists($column)

No description

Parameters

$column

Return Value

bool

at line 218
void offsetUnset($column)

No description

Parameters

$column

Return Value

void

at line 224
void __set(string $column, mixed $value)

No description

Parameters

string $column
mixed $value

Return Value

void

at line 234
mixed __get(string $key)

No description

Parameters

string $key

Return Value

mixed

Exceptions

MemberAccessException

at line 252
bool __isset(string $key)

No description

Parameters

string $key

Return Value

bool

at line 269
void __unset(string $key)

No description

Parameters

string $key

Return Value

void

at line 276
bool accessColumn(string|null $key, bool $selectColumn = true)

internal  
 

No description

Parameters

string|null $key
bool $selectColumn

Return Value

bool

at line 291
protected void removeAccessColumn(string $key)

No description

Parameters

string $key

Return Value

void