custom/plugins/DmitsInfoFlag/src/Struct/InfoFlag.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Dmits\InfoFlag\Struct;
  3. use Shopware\Core\Framework\Struct\Struct;
  4. class InfoFlag extends Struct
  5. {
  6.     /**
  7.      * @var string
  8.      */
  9.     protected $position;
  10.     /**
  11.      * @var bool
  12.      */
  13.     protected $mobile;
  14.     
  15.     /**
  16.      * @var bool
  17.      */
  18.     protected $mobileland;
  19.     
  20.     /**
  21.      * @var bool
  22.      */
  23.     protected $tablet;
  24.     
  25.     /**
  26.      * @var bool
  27.      */
  28.     protected $tabletland;
  29.     
  30.     /**
  31.      * @var bool
  32.      */
  33.     protected $desktop;
  34.     /**
  35.      * @var string
  36.      */
  37.     protected $content;
  38.     
  39.     /**
  40.      * @var string
  41.      */
  42.     protected $width;
  43.     
  44.     /**
  45.      * @var string
  46.      */
  47.     protected $height;
  48.     
  49.     /**
  50.      * @var string
  51.      */
  52.     protected $textcolor;
  53.     
  54.     /**
  55.      * @var string
  56.      */
  57.     protected $bgcolor;
  58.     
  59.     /**
  60.      * @var string
  61.      */
  62.     protected $closeborderradius;
  63.     
  64.     /**
  65.      * @var string
  66.      */
  67.     protected $closetextcolor;
  68.     
  69.     /**
  70.      * @var string
  71.      */
  72.     protected $closebgcolor;
  73.     
  74.     /**
  75.      * @var string
  76.      */
  77.     protected $closetime;
  78.     
  79.     /**
  80.      * @var string
  81.      */
  82.     protected $contentpadding;
  83.     /**
  84.      * @var bool
  85.      */
  86.     protected $close;
  87.     
  88.     /**
  89.      * @var bool
  90.      */
  91.     protected $active;
  92.     
  93.     /**
  94.      * @var bool
  95.      */
  96.     protected $border;
  97.     
  98.     public function getActive(): bool
  99.     {
  100.         return $this->active;
  101.     }
  102.     
  103.     public function setActive(bool $active): void
  104.     {
  105.         $this->active $active;
  106.     }
  107.     public function getPosition(): string
  108.     {
  109.         return $this->position;
  110.     }
  111.     public function setPosition(string $position): void
  112.     {
  113.         $this->position $position;
  114.     }
  115.     
  116.     public function getMobile(): bool
  117.     {
  118.         return $this->mobile;
  119.     }
  120.     
  121.     public function setMobile(bool $mobile): void
  122.     {
  123.         $this->mobile $mobile;
  124.     }
  125.     
  126.     public function getMobileland(): bool
  127.     {
  128.         return $this->mobileland;
  129.     }
  130.     
  131.     public function setMobileland(bool $mobileland): void
  132.     {
  133.         $this->mobileland $mobileland;
  134.     }
  135.     
  136.     public function getTablet(): bool
  137.     {
  138.         return $this->tablet;
  139.     }
  140.     
  141.     public function setTablet(bool $tablet): void
  142.     {
  143.         $this->tablet $tablet;
  144.     }
  145.     
  146.     public function getTabletland(): bool
  147.     {
  148.         return $this->tabletland;
  149.     }
  150.     
  151.     public function setTabletland(bool $tabletland): void
  152.     {
  153.         $this->tabletland $tabletland;
  154.     }
  155.     
  156.     public function getDesktop(): bool
  157.     {
  158.         return $this->desktop;
  159.     }
  160.     
  161.     public function setDesktop(bool $desktop): void
  162.     {
  163.         $this->desktop $desktop;
  164.     }
  165.     
  166.     public function getClose(): bool
  167.     {
  168.         return $this->close;
  169.     }
  170.     public function setClose(bool $close): void
  171.     {
  172.         $this->close $close;
  173.     }
  174.     
  175.     public function getBorder(): bool
  176.     {
  177.         return $this->border;
  178.     }
  179.     
  180.     public function setBorder(bool $border): void
  181.     {
  182.         $this->border $border;
  183.     }
  184.     
  185.     public function getContent(): string
  186.     {
  187.         return $this->content;
  188.     }
  189.     
  190.     public function setContent(string $content): void
  191.     {
  192.         $this->content $content;
  193.     }
  194.     
  195.     public function getWidth(): string
  196.     {
  197.         return $this->width;
  198.     }
  199.     
  200.     public function setWidth(string $width): void
  201.     {
  202.         $this->width $width;
  203.     }
  204.     
  205.     public function getHeight(): string
  206.     {
  207.         return $this->height;
  208.     }
  209.     
  210.     public function setHeight(string $height): void
  211.     {
  212.         $this->height $height;
  213.     }
  214.     
  215.     public function getTextcolor(): string
  216.     {
  217.         return $this->textcolor;
  218.     }
  219.     
  220.     public function setTextcolor(string $textcolor): void
  221.     {
  222.         $this->textcolor $textcolor;
  223.     }
  224.     
  225.     public function getBgcolor(): string
  226.     {
  227.         return $this->bgcolor;
  228.     }
  229.     
  230.     public function setBgcolor(string $bgcolor): void
  231.     {
  232.         $this->bgcolor $bgcolor;
  233.     }
  234.     
  235.     
  236.     public function getCloseborderradius(): string
  237.     {
  238.         return $this->closeborderradius;
  239.     }
  240.     
  241.     public function setCloseborderradius(string $closeborderradius): void
  242.     {
  243.         $this->closeborderradius $closeborderradius;
  244.     }
  245.     
  246.     public function getClosetextcolor(): string
  247.     {
  248.         return $this->closetextcolor;
  249.     }
  250.     
  251.     public function setClosetextcolor(string $closetextcolor): void
  252.     {
  253.         $this->closetextcolor $closetextcolor;
  254.     }
  255.     
  256.     public function getClosebgcolor(): string
  257.     {
  258.         return $this->closebgcolor;
  259.     }
  260.     
  261.     public function setClosebgcolor(string $closebgcolor): void
  262.     {
  263.         $this->closebgcolor $closebgcolor;
  264.     }
  265.     
  266.     public function getClosetime(): string
  267.     {
  268.         return $this->closetime;
  269.     }
  270.     
  271.     public function setClosetime(string $closetime): void
  272.     {
  273.         $this->closetime $closetime;
  274.     }
  275.     
  276.     public function getContentpadding(): string
  277.     {
  278.         return $this->contentpadding;
  279.     }
  280.     
  281.     public function setContentpadding(string $contentpadding): void
  282.     {
  283.         $this->contentpadding $contentpadding;
  284.     }
  285.     
  286.     
  287. }