AttributeValue

Aggrosoft\WAWIBundle\Entity\AttributeValue
4
Columns
2
Relations
9
Properties

Relationships

Click entity to navigate
erDiagram
    AttributeValue {
                string id PK
                string foreignId
                string value
                integer sort
                    }
                AttributeValue }o--|| Attribute : "attribute"
        Attribute {
        int id PK
    }
                AttributeValue }o--|| Product : "product"
        Product {
        int id PK
    }
                    

Metadaten

Tabelle attributevalue
Bundle WAWIBundle
Interfaces
Translatable IPrototype IHasLanguage
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
foreignId foreign_id string(36)
{{ entity.foreignId }}
value value string(255)
{{ entity.value }}
sort sort integer(11)
{{ entity.sort }}

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
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
value DB
read write
{{ entity.value }}
getValue()
setValue()
string
attribute DB
read write
{{ entity.attribute }}
getAttribute()
setAttribute()
\Aggrosoft\WAWIBundle\Entity\Attribute
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
translatableLocale Computed
write

setTranslatableLocale()
-
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
selectedLanguage Computed
read write
{{ entity.selectedLanguage }}
getSelectedLanguage()
setSelectedLanguage()
-
language Computed
read
{{ entity.language }}
getLanguage()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
attribute ManyToOne Attribute - attributevalues - {{ entity.attribute }}
product ManyToOne Product - attributevalues - {{ entity.product }}
Keine Indexes definiert