class ActiveRow implements IteratorAggregate, IRow

Single row representation.

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

Methods

__construct(array $data, Selection $table)

No description

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)

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

Returns referenced row.

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

Returns referencing rows.

bool
update(iterable $data)

Updates row.

int
delete()

Deletes row.

getIterator()

No description

void
offsetSet(string $column, mixed $value)

Stores value in column.

mixed
offsetGet(string $column)

Returns value of column.

bool
offsetExists(string $column)

Tests if column exists.

void
offsetUnset(string $column)

Removes column from data.

__set($column, $value)

No description

ActiveRow|mixed
__get(string $key)

No description

__isset($key)

No description

__unset($key)

No description

bool
accessColumn($key, bool $selectColumn = true)

No description

void
removeAccessColumn(string $key)

No description

Details

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

No description

Parameters

array $data
Selection $table

at line 41
setTable(Selection $table)

internal  
 

No description

Parameters

Selection $table

at line 50
Selection getTable()

internal  
 

No description

Return Value

Selection

at line 56
__toString()

No description

at line 70
array toArray()

No description

Return Value

array

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

Returns primary key value.

Parameters

bool $throw

Return Value

mixed

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

Returns row signature (composition of primary keys)

Parameters

bool $throw

Return Value

string

at line 126
IRow|null ref(string $key, string $throughColumn = null)

Returns referenced row.

Parameters

string $key
string $throughColumn

Return Value

IRow|null

Returns referencing rows.

Parameters

string $key
string $throughColumn

Return Value

GroupedSelection

at line 154
bool update(iterable $data)

Updates row.

Parameters

iterable $data

Return Value

bool

at line 189
int delete()

Deletes row.

Return Value

int

number of affected rows

at line 206
Iterator getIterator()

No description

Return Value

Iterator

at line 221
void offsetSet(string $column, mixed $value)

Stores value in column.

Parameters

string $column
mixed $value

Return Value

void

at line 232
mixed offsetGet(string $column)

Returns value of column.

Parameters

string $column

Return Value

mixed

at line 242
bool offsetExists(string $column)

Tests if column exists.

Parameters

string $column

Return Value

bool

at line 252
void offsetUnset(string $column)

Removes column from data.

Parameters

string $column

Return Value

void

at line 258
__set($column, $value)

No description

Parameters

$column
$value

at line 268
ActiveRow|mixed __get(string $key)

No description

Parameters

string $key

Return Value

ActiveRow|mixed

Exceptions

MemberAccessException

at line 286
__isset($key)

No description

Parameters

$key

at line 303
__unset($key)

No description

Parameters

$key

at line 312
bool accessColumn($key, bool $selectColumn = true)

internal  
 

No description

Parameters

$key
bool $selectColumn

Return Value

bool

at line 325
protected void removeAccessColumn(string $key)

No description

Parameters

string $key

Return Value

void