Content

Aggrosoft\WAWIBundle\Entity\Content
15
Columns
5
Relations
22
Properties

Relationships

Click entity to navigate
erDiagram
    Content {
                string id PK
                string foreignId
                string title
                string displayTitle
                string ident
                text text
                        ___ ___more___
            }
                Content }o--|| ContentCategory : "contentcategory"
        ContentCategory {
        int id PK
    }
                Content ||--o{ ClientContent : "clientContents"
        ClientContent {
        int id PK
    }
                Content ||--o{ ContentEMailAttachment : "emailAttachments"
        ContentEMailAttachment {
        int id PK
    }
                Content }o--o{ ObjectGroup : "groups"
        ObjectGroup {
        int id PK
    }
                Content ||--o{ ContentMetaField : "metafields"
        ContentMetaField {
        int id PK
    }
                    

Metadaten

Tabelle content
Bundle WAWIBundle
Interfaces
Translatable IGroupable IMetaExtendable IUpdateTimeTrackable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
foreignId foreign_id string(36)
{{ entity.foreignId }}
title title string(255)
{{ entity.title }}
displayTitle displayTitle string(255)
{{ entity.displayTitle }}
ident ident string(64)
{{ entity.ident }}
text text text
{{ entity.text }}
subject subject string(255)
{{ entity.subject }}
senderEmail senderEmail string(255)
{{ entity.senderEmail }}
senderName senderName string(255)
{{ entity.senderName }}
cc cc string(255)
{{ entity.cc }}
bcc bcc string(255)
{{ entity.bcc }}
replyToEMail replyToEMail string(255)
{{ entity.replyToEMail }}
replyToName replyToName string(255)
{{ entity.replyToName }}
lastUpdated lastupdated integer(11)
{{ entity.lastUpdated }}
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
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
ident DB
read write
{{ entity.ident }}
getIdent()
setIdent()
string
text DB
read write
{{ entity.text }}
getText()
setText()
string
contentcategory DB
read write
{{ entity.contentcategory }}
getContentcategory()
setContentcategory()
\Aggrosoft\WAWIBundle\Entity\ContentCategory
translatableLocale Computed
write

setTranslatableLocale()
-
lastUpdated DB
read write
{{ entity.lastUpdated }}
getLastUpdated()
setLastUpdated()
integer
clientContents DB
read
{{ entity.clientContents }}
getClientContents()
\Doctrine\Common\Collections\Collection
subject DB
read write
{{ entity.subject }}
getSubject()
setSubject()
string
emailAttachments DB
read
{{ entity.emailAttachments }}
getEmailAttachments()
\Doctrine\Common\Collections\Collection
groups DB
read
{{ entity.groups }}
getGroups()
\Doctrine\Common\Collections\Collection
displayTitle DB
read write
{{ entity.displayTitle }}
getDisplayTitle()
setDisplayTitle()
string
senderEmail DB
read write
{{ entity.senderEmail }}
getSenderEmail()
setSenderEmail()
string
senderName DB
read write
{{ entity.senderName }}
getSenderName()
setSenderName()
string
cc DB
read write
{{ entity.cc }}
getCc()
setCc()
string
entityLocale Computed
read
{{ entity.entityLocale }}
getEntityLocale()
-
metafields DB
read
{{ entity.metafields }}
getMetafields()
\Doctrine\Common\Collections\Collection
updated DB
read write
{{ entity.updated }}
getUpdated()
setUpdated()
\DateTime
bcc DB
read write
{{ entity.bcc }}
getBcc()
setBcc()
string
replyToEMail DB
read write
{{ entity.replyToEMail }}
getReplyToEMail()
setReplyToEMail()
string
replyToName DB
read write
{{ entity.replyToName }}
getReplyToName()
setReplyToName()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
contentcategory ManyToOne ContentCategory - contents - {{ entity.contentcategory }}
clientContents OneToMany ClientContent content -
persist remove
{{ entity.clientContents }}
emailAttachments OneToMany ContentEMailAttachment content -
all
{{ entity.emailAttachments }}
groups ManyToMany ObjectGroup - contents - {{ entity.groups }}
metafields OneToMany ContentMetaField content -
persist remove
{{ entity.metafields }}
Keine Indexes definiert