ContentCategory

Aggrosoft\WAWIBundle\Entity\ContentCategory
4
Columns
2
Relations
6
Properties

Relationships

Click entity to navigate
erDiagram
    ContentCategory {
                string id PK
                string foreignId
                string title
                string ident
                    }
                ContentCategory }o--|| ContentCategory : "parent"
        ContentCategory {
        int id PK
    }
                ContentCategory ||--o{ Content : "contents"
        Content {
        int id PK
    }
                    

Metadaten

Tabelle contentcategory
Bundle WAWIBundle
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 }}
ident ident string(64)
{{ entity.ident }}

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
contents DB
read
{{ entity.contents }}
getContents()
\Doctrine\Common\Collections\Collection
parent DB
read write
{{ entity.parent }}
getParent()
setParent()
\Aggrosoft\WAWIBundle\Entity\ContentCategory
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
parent ManyToOne ContentCategory - children - {{ entity.parent }}
contents OneToMany Content contentcategory -
persist remove
{{ entity.contents }}
Keine Indexes definiert