custom/plugins/ZeobvGetNotified/src/Struct/GetNotifiedConfig.php line 9

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Zeobv\GetNotified\Struct;
  4. use Shopware\Core\Framework\Struct\Struct;
  5. class GetNotifiedConfig extends Struct
  6. {
  7.     public bool $replaceAddToCart;
  8.     public bool $showEmailInput;
  9.     public bool $showQuantityInput;
  10.     public bool $show;
  11.     public bool $enableRecaptcha;
  12.     public bool $showPrivacyStatement;
  13.     public bool $allowFormForProductOnCloseout;
  14.     public bool $canShowNotificationBell;
  15.     public bool $showTitle;
  16.     public function __construct(
  17.         bool $replaceAddToCart,
  18.         bool $showEmailInput,
  19.         bool $showQuantityInput,
  20.         bool $show,
  21.         bool $enableRecaptcha,
  22.         bool $showPrivacyStatement,
  23.         bool $allowFormForProductOnCloseout,
  24.         bool $canShowNotificationBell,
  25.         bool $showTitle
  26.     ) {
  27.         $this->replaceAddToCart $replaceAddToCart;
  28.         $this->showEmailInput $showEmailInput;
  29.         $this->showQuantityInput $showQuantityInput;
  30.         $this->show $show;
  31.         $this->enableRecaptcha $enableRecaptcha;
  32.         $this->showPrivacyStatement $showPrivacyStatement;
  33.         $this->allowFormForProductOnCloseout $allowFormForProductOnCloseout;
  34.         $this->canShowNotificationBell $canShowNotificationBell;
  35.         $this->showTitle $showTitle;
  36.     }
  37. }