PluginSettings

Aggrosoft\WAWIBundle\Entity\PluginSettings
8
Columns
2
Relations
10
Properties

Relationships

Click entity to navigate
erDiagram
    PluginSettings {
                string id PK
                string foreignId
                string name
                string displayName
                string fieldType
                text description
                        ___ ___more___
            }
                PluginSettings }o--|| Plugin : "plugin"
        Plugin {
        int id PK
    }
                PluginSettings ||--o{ ClientValue : "values"
        ClientValue {
        int id PK
    }
                    

Metadaten

Tabelle pluginsettings
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
foreignId foreign_id string(36)
{{ entity.foreignId }}
name name string(255)
{{ entity.name }}
displayName displayName string(255)
{{ entity.displayName }}
fieldType fieldType string(64)
{{ entity.fieldType }}
description description text
{{ entity.description }}
sort sort integer(11)
{{ entity.sort }}
grouping grouping string(255)
{{ entity.grouping }}

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
name DB
read write
{{ entity.name }}
getName()
setName()
string
plugin DB
read write
{{ entity.plugin }}
getPlugin()
setPlugin()
\Aggrosoft\WAWIBundle\Entity\Plugin
displayName DB
read write
{{ entity.displayName }}
getDisplayName()
setDisplayName()
string
values DB
read
{{ entity.values }}
getValues()
\Doctrine\Common\Collections\Collection
fieldType DB
read write
{{ entity.fieldType }}
getFieldType()
setFieldType()
string
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
description DB
read write
{{ entity.description }}
getDescription()
setDescription()
string
grouping DB
read write
{{ entity.grouping }}
getGrouping()
setGrouping()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
plugin ManyToOne Plugin - settings
persist refresh
{{ entity.plugin }}
values OneToMany ClientValue pluginsettings -
persist remove
{{ entity.values }}
Keine Indexes definiert