<?php declare(strict_types=1);namespace DkcBasicDataEntryFields;use Shopware\Core\Framework\Plugin;use Shopware\Core\Framework\Plugin\Context\InstallContext;use PDO;use PDOException;class DkcBasicDataEntryFields extends Plugin{ public function install(InstallContext $installContext): void { } public static function dkcCustomFields($fieldName) { error_log("Aufruf von dkcCustomFields mit: $fieldName"); return "Testwert für $fieldName"; } }