Standardwert für eigene Attribute

Moin,

ich suche aktuell nach einer Möglichkeit wie man einem eigenen Attribut (bspw. s_user_attributes -> xyz) einen Standardwert mitgeben kann. Hat jmd eine Idee wie man das mit dem neuen Attributsystem machen kann?

MfG

$service = $this->container->get('shopware_attribute.crud_service');
$service->update(
    's_articles_attributes',
    'foo_bar',
    'string',
    [
        'label' => 'foo',
        'supportText' => 'foo',
        'helpText' => 'DUMMfoo',
        'displayInBackend' => true,
        'position' => 100,
        'custom' => true,
     ],
     null,
     false,
     'default foo'
);

So in etwa müsste das gehen :slight_smile:

1 „Gefällt mir“

Danke, das hat super funktioniert!