\Ceo\Api\ModelsNoteComment

Base model methods

Summary

Methods
Properties
Constants
getSrn()
findFirstBySrn()
getResultsetClass()
hasProperty()
setRelated()
initialize()
getSource()
find()
findFirst()
toArray()
$id
$uuid
$reference
$user_id
$comment
$created_at
$version
$draft_uuid
$parent_id
$srn_name
No constants found
toArrayRelated()
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$id

$id : integer

ID

Type

integer

$uuid

$uuid : string

UUID

Type

string

$reference

$reference : string

Parent UUID

Type

string

$user_id

$user_id : integer

Comment User's ID

Type

integer

$comment

$comment : string

Comment

Type

string

$created_at

$created_at : string

Created time

Type

string

$version

$version : string

Version commented on

Type

string

$draft_uuid

$draft_uuid : string

Draft reference

Type

string

$parent_id

$parent_id : string

Parent reference

Type

string

$srn_name

$srn_name : string

Proper srn name

Type

string

Methods

getSrn()

getSrn() : string

Return model's SRN. Model should implement a 'srn_name' protected value.

Otherwise, this will pull from the 'getSource' method

Returns

string —

SRN

findFirstBySrn()

findFirstBySrn(string  $srn) : object

Find model by SRN

Parameters

string $srn

complete SRN

Returns

object —

Model object

getResultsetClass()

getResultsetClass() 

hasProperty()

hasProperty(string  $str) : boolean

Determine if the model has a public property.

Useful in determining valid sorting options on the front end.

Parameters

string $str

Property

Returns

boolean

setRelated()

setRelated(string  $relation, mixed  $value = array()) : self

Phalcon has this bug where if you enumerate a relation then try to set it via the magic setter, it won't save.

I think it has something to do with implicit transactions, but I'm not entirely sure...

Parameters

string $relation
mixed $value

Returns

self

initialize()

initialize() 

Initialize method for model.

getSource()

getSource() : string

Returns table name mapped in the model.

Returns

string

find()

find(mixed  $parameters = null) : array<mixed,\Ceo\Api\Models\Lockrequest>

Allows to query a set of records that match the specified conditions

Parameters

mixed $parameters

Returns

array<mixed,\Ceo\Api\Models\Lockrequest>

findFirst()

findFirst(mixed  $parameters = null) : \Ceo\Api\Models\Lockrequest

Allows to query the first record that match the specified conditions

Parameters

mixed $parameters

Returns

\Ceo\Api\Models\Lockrequest

toArray()

toArray(  $columns = NULL) 

Parameters

$columns

toArrayRelated()

toArrayRelated(  $ops,   $array) 

Parameters

$ops
$array