Filters

Class Filters provides sources regular expression pattern matching group assignments

package

App\Entity

ORM\Entity

(repositoryClass="App\Repository\FiltersRepository")

Methods

Doctrine PrePersist actions triggered when record row is requested

createdOnPrePersit() 
ORM\PrePersist

Gets the $created timestamp

getCreated() : integer|null

Response

integer|null

Get the $group_id associated with foreign key relationship \App\Entity\Groups->id

getGroupId() : \App\Entity\Groups|null

Response

\App\Entity\Groups|null

Gets the ID for the record

getId() : integer|null

Response

integer|null

Gets the name for the source pattern

getName() : null|string

Response

null|string

Gets the source pattern regular expression

getPattern() : null|string

Response

null|string

Gets the $updated timestamp

getUpdated() : integer|null

Response

integer|null

Sets the $created timestamp

setCreated(integer $created) : \App\Entity\Filters

Arguments

$created

integer

Response

\App\Entity\Filters

Sets the record $group_id associated with foreign key relationship \App\Entity\Groups->id

setGroupId(\App\Entity\Groups $group_id) : \App\Entity\Filters

Arguments

$group_id

\App\Entity\Groups

Response

\App\Entity\Filters

Sets the name for the source pattern

setName(string $name) : \App\Entity\Filters

Arguments

$name

string

Response

\App\Entity\Filters

Set the source pattern regular expression

setPattern(string $pattern) : \App\Entity\Filters

Arguments

$pattern

string

Response

\App\Entity\Filters

Sets the $updated timestamp

setUpdated(integer $updated) : \App\Entity\Filters

Arguments

$updated

integer

Response

\App\Entity\Filters

Doctrine PostPersist actions triggered after record row is inserted and before flush

updatedOnPostPersit() 
ORM\PostPersist

Properties

Autogenerated and increment unique ID, primary key

id : 
ORM\Id

()

ORM\GeneratedValue

()

ORM\Column

(type="integer")

Type(s)

Name of the source matching pattern

name : 
ORM\Column

(type="string", length=32)

Type(s)

GPS ID Regular Expression Pattern

pattern : 
ORM\Column

(type="string", length=128)

Type(s)

Groups ID for foreign key relationship to group membership

group_id : 
ORM\ManyToOne

(targetEntity="App\Entity\Groups", inversedBy="filters")

Type(s)

UTC timestamp of when record was created

created : integer
var
Gedmo\Timestampable

(on="create")

ORM\Column

(type="integer", name="created", nullable=true)

Type(s)

integer

Updated timestamp in UNIX Epoch format UTC

updated : 
Gedmo\Timestampable

(on="update")

ORM\Column

(type="integer", name="updated", nullable=true)

Type(s)