ClientContent

Aggrosoft\WAWIBundle\Entity\ClientContent
2
Columns
2
Relations
5
Properties

Relationships

Click entity to navigate
erDiagram
    ClientContent {
                string id PK
                text text
                    }
                ClientContent }o--|| Content : "content"
        Content {
        int id PK
    }
                ClientContent }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle clientcontent
Bundle WAWIBundle
Interfaces
Translatable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
text text text
{{ entity.text }}

Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar. Verwende {{ entity.propertyName }} zum Lesen.

Property Access Twig Usage Methods Return Type
translatableLocale Computed
write

setTranslatableLocale()
-
id DB
read
{{ entity.id }}
getId()
string
text DB
read write
{{ entity.text }}
getText()
setText()
string
content DB
read write
{{ entity.content }}
getContent()
setContent()
\Aggrosoft\WAWIBundle\Entity\Content
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
content ManyToOne Content - clientContents - {{ entity.content }}
client ManyToOne Client - - - {{ entity.client }}
Keine Indexes definiert