Workflow
Aggrosoft\WAWIBundle\Entity\Workflow
7
Columns
5
Relations
12
Properties
Relationships
Click entity to navigateMetadaten
Tabelle
workflow
Bundle
WAWIBundle
Interfaces
IClientable
IClientClonable
IGroupable
| Property | Column | Type | Flags | Twig Access |
|---|---|---|---|---|
id
|
id
|
string(36)
|
PK
AUTO
|
{{ entity.id }} |
active
|
active
|
boolean
|
|
{{ entity.active }} |
sort
|
sort
|
integer(11)
|
|
{{ entity.sort }} |
title
|
title
|
string(255)
|
|
{{ entity.title }} |
note
|
note
|
text
|
|
{{ entity.note }} |
event
|
event
|
string(255)
|
|
{{ entity.event }} |
updated
|
updated
|
datetime
|
|
{{ entity.updated }} |
Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar.
Verwende {{ entity.propertyName }} zum Lesen.
| Property | Access | Twig Usage | Methods | Return Type |
|---|---|---|---|---|
id
DB
|
read
|
{{
entity.id
}}
|
getId()
|
string
|
title
DB
|
read
write
|
{{
entity.title
}}
|
getTitle()
setTitle()
|
string
|
event
DB
|
read
write
|
{{
entity.event
}}
|
getEvent()
setEvent()
|
string
|
actions
DB
|
read
|
{{
entity.actions
}}
|
getActions()
|
\Doctrine\Common\Collections\Collection
|
conditions
DB
|
read
|
{{
entity.conditions
}}
|
getConditions()
|
\Doctrine\Common\Collections\Collection
|
client
DB
|
read
write
|
{{
entity.client
}}
|
getClient()
setClient()
|
\Aggrosoft\WAWIBundle\Entity\Client
|
active
DB
|
read
write
|
{{
entity.active
}}
|
getActive()
setActive()
|
boolean
|
note
DB
|
read
write
|
{{
entity.note
}}
|
getNote()
setNote()
|
string
|
groups
DB
|
read
|
{{
entity.groups
}}
|
getGroups()
|
\Doctrine\Common\Collections\Collection
|
sort
DB
|
read
write
|
{{
entity.sort
}}
|
getSort()
setSort()
|
integer
|
executeInClients
DB
|
read
|
{{
entity.executeInClients
}}
|
getExecuteInClients()
|
\Doctrine\Common\Collections\Collection
|
updated
DB
|
read
write
|
{{
entity.updated
}}
|
getUpdated()
setUpdated()
|
\DateTime
|
| Property | Type | Target Entity | Mapped By | Inversed By | Cascade | Twig Access |
|---|---|---|---|---|---|---|
actions
|
OneToMany | WorkflowAction |
workflow
|
- |
persist
remove
refresh
|
{{ entity.actions }} |
conditions
|
OneToMany | WorkflowCondition |
workflow
|
- |
persist
remove
refresh
|
{{ entity.conditions }} |
groups
|
ManyToMany | ObjectGroup | - |
workflows
|
- | {{ entity.groups }} |
client
|
ManyToOne | Client | - |
workflows
|
- | {{ entity.client }} |
executeInClients
|
ManyToMany | Client | - |
crossWorkflows
|
- | {{ entity.executeInClients }} |
Keine Indexes definiert