Ich versuche auf meine eigens erstelleten Freitextfelder (über mein Plugin erstellt) im Frontend über Smarty zuzugreifen.
Das versuche ich über folgenden Codeschnippsel:
{$manufacturer->getAttributes()['core']->get('supplierscustomerid')}
Leider funktioniert das überhaupt nicht. Allerdings wenn ich im Controller Listing in die Action manufacturer folgendes paste:
print_r($manufacturer->getAttributes()['core']->get('supplierscustomerid'));
die();
sehe ich mein Freitextfeld. De facto ist also mein Ansatz mit Smarty überhaupt nicht verkehrt gewesen. Ich habe oft gelesen das Doctrine Unterstriche in Camel-Case
transformiert, weswegen ich die Namensgebung beim Freitextfeld im lowercase gehalten habe. Naja, es funktioniert nach wie vor leider nicht.
Über meinen PHP Code im Controller jedoch schon.
Das Freitextfeld füge ich wie folgt hinzu:
public function createAttributes()
{
$service = Shopware()->Container()->get('shopware_attribute.crud_service');
$service->update('s_articles_supplier_attributes', 'supplierscustomerid', 'text', [
'label' => 'Kundennummer',
'supportText' => '20016',
//user has the opportunity to translate the attribute field for each shop
'translatable' => true,
//attribute will be displayed in the backend module
'displayInBackend' => true,
//numeric position for the backend view, sorted ascending
'position' => 100,
//user can modify the attribute in the free text field module
'custom' => false
]);
}
Ich wäre für jeden Denkansatz sehr dankbar.
Vielen Dank.