WorkflowCondition

Aggrosoft\WAWIBundle\Entity\WorkflowCondition
3
Columns
1
Relations
7
Properties

Relationships

Click entity to navigate
erDiagram
    WorkflowCondition {
                string id PK
                string parameter
                text value
                    }
                WorkflowCondition }o--|| Workflow : "workflow"
        Workflow {
        int id PK
    }
                    

Metadaten

Tabelle workflowcondition
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
parameter parameter string(255)
{{ entity.parameter }}
value value text
{{ entity.value }}

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
parameter DB
read write
{{ entity.parameter }}
getParameter()
setParameter()
string
value DB
read write
{{ entity.value }}
getValue()
setValue()
string
workflow DB
read write
{{ entity.workflow }}
getWorkflow()
setWorkflow()
\Aggrosoft\WAWIBundle\Entity\Workflow
title Computed
read write
{{ entity.title }}
getTitle()
setTitle()
-
type Computed
read write
{{ entity.type }}
getType()
setType()
-
valueOptions Computed
read write
{{ entity.valueOptions }}
getValueOptions()
setValueOptions()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
workflow ManyToOne Workflow - conditions - {{ entity.workflow }}
Keine Indexes definiert