vendor/shopware/core/Content/MailTemplate/Aggregate/MailHeaderFooter/MailHeaderFooterEntity.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\MailTemplate\Aggregate\MailHeaderFooter;
  3. use Shopware\Core\Content\MailTemplate\Aggregate\MailHeaderFooterTranslation\MailHeaderFooterTranslationCollection;
  4. use Shopware\Core\Framework\DataAbstractionLayer\Entity;
  5. use Shopware\Core\Framework\DataAbstractionLayer\EntityIdTrait;
  6. use Shopware\Core\System\SalesChannel\SalesChannelCollection;
  7. class MailHeaderFooterEntity extends Entity
  8. {
  9.     use EntityIdTrait;
  10.     /**
  11.      * @var string|null
  12.      */
  13.     protected $name;
  14.     /**
  15.      * @var bool
  16.      */
  17.     protected $systemDefault;
  18.     /**
  19.      * @var string|null
  20.      */
  21.     protected $description;
  22.     /**
  23.      * @var string|null
  24.      */
  25.     protected $headerHtml;
  26.     /**
  27.      * @var string|null
  28.      */
  29.     protected $headerPlain;
  30.     /**
  31.      * @var string|null
  32.      */
  33.     protected $footerHtml;
  34.     /**
  35.      * @var string|null
  36.      */
  37.     protected $footerPlain;
  38.     /**
  39.      * @var SalesChannelCollection|null
  40.      */
  41.     protected $salesChannels;
  42.     /**
  43.      * @var MailHeaderFooterTranslationCollection|null
  44.      */
  45.     protected $translations;
  46.     public function getName(): ?string
  47.     {
  48.         return $this->name;
  49.     }
  50.     public function setName(?string $name): void
  51.     {
  52.         $this->name $name;
  53.     }
  54.     public function getDescription(): ?string
  55.     {
  56.         return $this->description;
  57.     }
  58.     public function setDescription(?string $description): void
  59.     {
  60.         $this->description $description;
  61.     }
  62.     public function getHeaderHtml(): ?string
  63.     {
  64.         return $this->headerHtml;
  65.     }
  66.     public function setHeaderHtml(?string $headerHtml): void
  67.     {
  68.         $this->headerHtml $headerHtml;
  69.     }
  70.     public function getHeaderPlain(): ?string
  71.     {
  72.         return $this->headerPlain;
  73.     }
  74.     public function setHeaderPlain(?string $headerPlain): void
  75.     {
  76.         $this->headerPlain $headerPlain;
  77.     }
  78.     public function getFooterHtml(): ?string
  79.     {
  80.         return $this->footerHtml;
  81.     }
  82.     public function setFooterHtml(?string $footerHtml): void
  83.     {
  84.         $this->footerHtml $footerHtml;
  85.     }
  86.     public function getFooterPlain(): ?string
  87.     {
  88.         return $this->footerPlain;
  89.     }
  90.     public function setFooterPlain(?string $footerPlain): void
  91.     {
  92.         $this->footerPlain $footerPlain;
  93.     }
  94.     public function getSalesChannels(): ?SalesChannelCollection
  95.     {
  96.         return $this->salesChannels;
  97.     }
  98.     public function setSalesChannels(SalesChannelCollection $salesChannels): void
  99.     {
  100.         $this->salesChannels $salesChannels;
  101.     }
  102.     public function getTranslations(): ?MailHeaderFooterTranslationCollection
  103.     {
  104.         return $this->translations;
  105.     }
  106.     public function setTranslations(MailHeaderFooterTranslationCollection $translations): void
  107.     {
  108.         $this->translations $translations;
  109.     }
  110.     public function getSystemDefault(): bool
  111.     {
  112.         return $this->systemDefault;
  113.     }
  114.     public function setSystemDefault(bool $systemDefault): void
  115.     {
  116.         $this->systemDefault $systemDefault;
  117.     }
  118. }