WorkflowAction

Aggrosoft\WAWIBundle\Entity\WorkflowAction
2
Columns
3
Relations
6
Properties

Relationships

Click entity to navigate
erDiagram
    WorkflowAction {
                string id PK
                string type
                    }
                WorkflowAction ||--o{ WorkflowActionParameterValue : "parameters"
        WorkflowActionParameterValue {
        int id PK
    }
                WorkflowAction ||--o{ WorkflowActionCondition : "conditions"
        WorkflowActionCondition {
        int id PK
    }
                WorkflowAction }o--|| Workflow : "workflow"
        Workflow {
        int id PK
    }
                    

Metadaten

Tabelle workflowaction
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
type type string(255)
{{ entity.type }}

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
type DB
read write
{{ entity.type }}
getType()
setType()
string
parameters DB
read
{{ entity.parameters }}
getParameters()
\Doctrine\Common\Collections\Collection
conditions DB
read
{{ entity.conditions }}
getConditions()
\Doctrine\Common\Collections\Collection
workflow DB
read write
{{ entity.workflow }}
getWorkflow()
setWorkflow()
\Aggrosoft\WAWIBundle\Entity\Workflow
title Computed
read write
{{ entity.title }}
getTitle()
setTitle()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
parameters OneToMany WorkflowActionParameterValue workflowAction -
persist remove refresh
{{ entity.parameters }}
conditions OneToMany WorkflowActionCondition workflowAction -
persist remove refresh
{{ entity.conditions }}
workflow ManyToOne Workflow - actions - {{ entity.workflow }}
Keine Indexes definiert