vendor/shopware/storefront/Page/MetaInformation.php line 9

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Storefront\Page;
  3. use Shopware\Core\Framework\Log\Package;
  4. use Shopware\Core\Framework\Struct\Struct;
  5. #[Package('storefront')]
  6. class MetaInformation extends Struct
  7. {
  8.     /**
  9.      * @var string
  10.      */
  11.     protected $metaTitle '';
  12.     /**
  13.      * @var string
  14.      */
  15.     protected $metaDescription '';
  16.     /**
  17.      * @var string
  18.      */
  19.     protected $metaKeywords '';
  20.     /**
  21.      * @var string
  22.      */
  23.     protected $author '';
  24.     /**
  25.      * @var string
  26.      */
  27.     protected $xmlLang '';
  28.     /**
  29.      * @var string
  30.      */
  31.     protected $copyrightYear '';
  32.     /**
  33.      * @var string
  34.      */
  35.     protected $revisit '';
  36.     /**
  37.      * @var string
  38.      */
  39.     protected $robots '';
  40.     /**
  41.      * @var string|null
  42.      */
  43.     protected $canonical;
  44.     public function getMetaTitle(): string
  45.     {
  46.         return $this->metaTitle;
  47.     }
  48.     public function setMetaTitle(string $metaTitle): void
  49.     {
  50.         $this->metaTitle $metaTitle;
  51.     }
  52.     public function getMetaDescription(): string
  53.     {
  54.         return $this->metaDescription;
  55.     }
  56.     public function setMetaDescription(string $metaDescription): void
  57.     {
  58.         $this->metaDescription $metaDescription;
  59.     }
  60.     public function getMetaKeywords(): string
  61.     {
  62.         return $this->metaKeywords;
  63.     }
  64.     public function setMetaKeywords(string $metaKeywords): void
  65.     {
  66.         $this->metaKeywords $metaKeywords;
  67.     }
  68.     public function getAuthor(): string
  69.     {
  70.         return $this->author;
  71.     }
  72.     public function setAuthor(string $author): void
  73.     {
  74.         $this->author $author;
  75.     }
  76.     public function getXmlLang(): string
  77.     {
  78.         return $this->xmlLang;
  79.     }
  80.     public function setXmlLang(string $xmlLang): void
  81.     {
  82.         $this->xmlLang $xmlLang;
  83.     }
  84.     public function getCopyrightYear(): string
  85.     {
  86.         return $this->copyrightYear;
  87.     }
  88.     public function setCopyrightYear(string $copyrightYear): void
  89.     {
  90.         $this->copyrightYear $copyrightYear;
  91.     }
  92.     public function getRevisit(): string
  93.     {
  94.         return $this->revisit;
  95.     }
  96.     public function setRevisit(string $revisit): void
  97.     {
  98.         $this->revisit $revisit;
  99.     }
  100.     public function getRobots(): string
  101.     {
  102.         return $this->robots;
  103.     }
  104.     public function setRobots(string $robots): void
  105.     {
  106.         $this->robots $robots;
  107.     }
  108.     public function getCanonical(): ?string
  109.     {
  110.         return $this->canonical;
  111.     }
  112.     public function setCanonical(?string $canonical): void
  113.     {
  114.         $this->canonical $canonical;
  115.     }
  116. }