ContactMessage

Aggrosoft\WAWIBundle\Entity\ContactMessage
11
Columns
6
Relations
20
Properties

Relationships

Click entity to navigate
erDiagram
    ContactMessage {
                string id PK
                string subject
                text body
                string fromUser
                string recipientMail
                datetime created
                        ___ ___more___
            }
                ContactMessage }o--|| User : "user"
        User {
        int id PK
    }
                ContactMessage }o--|| Customer : "customer"
        Customer {
        int id PK
    }
                ContactMessage }o--|| Contact : "contact"
        Contact {
        int id PK
    }
                ContactMessage }o--|| Content : "content"
        Content {
        int id PK
    }
                ContactMessage }o--|| Language : "language"
        Language {
        int id PK
    }
                ContactMessage ||--o{ ContactMessageAttachment : "attachments"
        ContactMessageAttachment {
        int id PK
    }
                    

Metadaten

Tabelle contactmessage
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
subject subject string(255)
{{ entity.subject }}
body body text
{{ entity.body }}
fromUser fromUser string(255)
{{ entity.fromUser }}
recipientMail recipientMail string(255)
{{ entity.recipientMail }}
created created datetime
{{ entity.created }}
messageType messageType string(3)
{{ entity.messageType }}
medium medium string(10)
{{ entity.medium }}
sort sort integer(3)
{{ entity.sort }}
foreignId foreignId string(36)
{{ entity.foreignId }}
notUseContentForMessage notUseContentForMessage boolean
{{ entity.notUseContentForMessage }}

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 write
{{ entity.id }}
getId()
setId()
string
subject DB
read write
{{ entity.subject }}
getSubject()
setSubject()
string
body DB
read write
{{ entity.body }}
getBody()
setBody()
string
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
contact DB
read write
{{ entity.contact }}
getContact()
setContact()
\Aggrosoft\WAWIBundle\Entity\Contact
from Computed
read write
{{ entity.from }}
getFrom()
setFrom()
string
messageType DB
read write
{{ entity.messageType }}
getMessageType()
setMessageType()
string
fromUser DB
read write
{{ entity.fromUser }}
getFromUser()
setFromUser()
string
attachments DB
read
{{ entity.attachments }}
getAttachments()
\Doctrine\Common\Collections\Collection
imageAttachments Computed
read
{{ entity.imageAttachments }}
getImageAttachments()
\Doctrine\Common\Collections\Collection
medium DB
read write
{{ entity.medium }}
getMedium()
setMedium()
string
user DB
read write
{{ entity.user }}
getUser()
setUser()
\Aggrosoft\WAWIBundle\Entity\User
created DB
read write
{{ entity.created }}
getCreated()
setCreated()
\DateTime
customer DB
read write
{{ entity.customer }}
getCustomer()
setCustomer()
\Aggrosoft\WAWIBundle\Entity\Customer
status Computed
read write
{{ entity.status }}
getStatus()
setStatus()
EntityStatus
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
content DB
read write
{{ entity.content }}
getContent()
setContent()
\Aggrosoft\WAWIBundle\Entity\Content
recipientMail DB
read write
{{ entity.recipientMail }}
getRecipientMail()
setRecipientMail()
string
language DB
read write
{{ entity.language }}
getLanguage()
setLanguage()
\Aggrosoft\WAWIBundle\Entity\Language
notUseContentForMessage DB
read write
{{ entity.notUseContentForMessage }}
getNotUseContentForMessage()
setNotUseContentForMessage()
boolean
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
user ManyToOne User - contacts - {{ entity.user }}
customer ManyToOne Customer - contacts - {{ entity.customer }}
contact ManyToOne Contact - - - {{ entity.contact }}
content ManyToOne Content - - - {{ entity.content }}
language ManyToOne Language - - - {{ entity.language }}
attachments OneToMany ContactMessageAttachment message -
all
{{ entity.attachments }}
Index Name Columns Type
foreignId_idx
foreignId
INDEX