vendor/shopware/core/Checkout/Shipping/ShippingMethodEntity.php line 18

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Checkout\Shipping;
  3. use Shopware\Core\Checkout\Order\Aggregate\OrderDelivery\OrderDeliveryCollection;
  4. use Shopware\Core\Checkout\Shipping\Aggregate\ShippingMethodPrice\ShippingMethodPriceCollection;
  5. use Shopware\Core\Checkout\Shipping\Aggregate\ShippingMethodTranslation\ShippingMethodTranslationCollection;
  6. use Shopware\Core\Content\Media\MediaEntity;
  7. use Shopware\Core\Content\Rule\RuleEntity;
  8. use Shopware\Core\Framework\DataAbstractionLayer\Entity;
  9. use Shopware\Core\Framework\DataAbstractionLayer\EntityCustomFieldsTrait;
  10. use Shopware\Core\Framework\DataAbstractionLayer\EntityIdTrait;
  11. use Shopware\Core\System\DeliveryTime\DeliveryTimeEntity;
  12. use Shopware\Core\System\SalesChannel\SalesChannelCollection;
  13. use Shopware\Core\System\Tag\TagCollection;
  14. use Shopware\Core\System\Tax\TaxEntity;
  15. class ShippingMethodEntity extends Entity
  16. {
  17.     use EntityIdTrait;
  18.     use EntityCustomFieldsTrait;
  19.     public const TAX_TYPE_AUTO 'auto';
  20.     public const TAX_TYPE_FIXED 'fixed';
  21.     public const TAX_TYPE_HIGHEST 'highest';
  22.     public const POSITION_DEFAULT 1;
  23.     public const ACTIVE_DEFAULT true;
  24.     /**
  25.      * @var string|null
  26.      */
  27.     protected $name;
  28.     /**
  29.      * @var bool
  30.      */
  31.     protected $active;
  32.     /**
  33.      * @var int
  34.      */
  35.     protected $position;
  36.     /**
  37.      * @var string|null
  38.      */
  39.     protected $description;
  40.     /**
  41.      * @var string|null
  42.      */
  43.     protected $trackingUrl;
  44.     /**
  45.      * @var string
  46.      */
  47.     protected $deliveryTimeId;
  48.     /**
  49.      * @var DeliveryTimeEntity|null
  50.      */
  51.     protected $deliveryTime;
  52.     /**
  53.      * @var ShippingMethodTranslationCollection|null
  54.      */
  55.     protected $translations;
  56.     /**
  57.      * @var OrderDeliveryCollection|null
  58.      */
  59.     protected $orderDeliveries;
  60.     /**
  61.      * @var SalesChannelCollection|null
  62.      */
  63.     protected $salesChannelDefaultAssignments;
  64.     /**
  65.      * @var SalesChannelCollection|null
  66.      */
  67.     protected $salesChannels;
  68.     /**
  69.      * @var RuleEntity|null
  70.      */
  71.     protected $availabilityRule;
  72.     /**
  73.      * @var string
  74.      */
  75.     protected $availabilityRuleId;
  76.     /**
  77.      * @var ShippingMethodPriceCollection
  78.      */
  79.     protected $prices;
  80.     /**
  81.      * @var string|null
  82.      */
  83.     protected $mediaId;
  84.     /**
  85.      * @var string|null
  86.      */
  87.     protected $taxId;
  88.     /**
  89.      * @var MediaEntity|null
  90.      */
  91.     protected $media;
  92.     /**
  93.      * @var TagCollection|null
  94.      */
  95.     protected $tags;
  96.     /**
  97.      * @var string
  98.      */
  99.     protected $taxType;
  100.     /**
  101.      * @var TaxEntity|null
  102.      */
  103.     protected $tax;
  104.     public function __construct()
  105.     {
  106.         $this->prices = new ShippingMethodPriceCollection();
  107.     }
  108.     public function getName(): ?string
  109.     {
  110.         return $this->name;
  111.     }
  112.     public function setName(?string $name): void
  113.     {
  114.         $this->name $name;
  115.     }
  116.     public function getActive(): bool
  117.     {
  118.         return $this->active;
  119.     }
  120.     public function setActive(bool $active): void
  121.     {
  122.         $this->active $active;
  123.     }
  124.     public function getPosition(): int
  125.     {
  126.         return $this->position;
  127.     }
  128.     public function setPosition(int $position): void
  129.     {
  130.         $this->position $position;
  131.     }
  132.     public function getDescription(): ?string
  133.     {
  134.         return $this->description;
  135.     }
  136.     public function setDescription(?string $description): void
  137.     {
  138.         $this->description $description;
  139.     }
  140.     public function getTrackingUrl(): ?string
  141.     {
  142.         return $this->trackingUrl;
  143.     }
  144.     public function setTrackingUrl(?string $trackingUrl): void
  145.     {
  146.         $this->trackingUrl $trackingUrl;
  147.     }
  148.     public function getDeliveryTimeId(): string
  149.     {
  150.         return $this->deliveryTimeId;
  151.     }
  152.     public function setDeliveryTimeId(string $deliveryTimeId): void
  153.     {
  154.         $this->deliveryTimeId $deliveryTimeId;
  155.     }
  156.     public function getDeliveryTime(): ?DeliveryTimeEntity
  157.     {
  158.         return $this->deliveryTime;
  159.     }
  160.     public function setDeliveryTime(DeliveryTimeEntity $deliveryTime): void
  161.     {
  162.         $this->deliveryTime $deliveryTime;
  163.     }
  164.     public function getTranslations(): ?ShippingMethodTranslationCollection
  165.     {
  166.         return $this->translations;
  167.     }
  168.     public function setTranslations(ShippingMethodTranslationCollection $translations): void
  169.     {
  170.         $this->translations $translations;
  171.     }
  172.     public function getOrderDeliveries(): ?OrderDeliveryCollection
  173.     {
  174.         return $this->orderDeliveries;
  175.     }
  176.     public function setOrderDeliveries(OrderDeliveryCollection $orderDeliveries): void
  177.     {
  178.         $this->orderDeliveries $orderDeliveries;
  179.     }
  180.     public function getSalesChannelDefaultAssignments(): ?SalesChannelCollection
  181.     {
  182.         return $this->salesChannelDefaultAssignments;
  183.     }
  184.     public function setSalesChannelDefaultAssignments(SalesChannelCollection $salesChannelDefaultAssignments): void
  185.     {
  186.         $this->salesChannelDefaultAssignments $salesChannelDefaultAssignments;
  187.     }
  188.     public function getSalesChannels(): ?SalesChannelCollection
  189.     {
  190.         return $this->salesChannels;
  191.     }
  192.     public function setSalesChannels(SalesChannelCollection $salesChannels): void
  193.     {
  194.         $this->salesChannels $salesChannels;
  195.     }
  196.     public function getPrices(): ShippingMethodPriceCollection
  197.     {
  198.         return $this->prices;
  199.     }
  200.     public function setPrices(ShippingMethodPriceCollection $prices): void
  201.     {
  202.         $this->prices $prices;
  203.     }
  204.     public function getAvailabilityRule(): ?RuleEntity
  205.     {
  206.         return $this->availabilityRule;
  207.     }
  208.     public function setAvailabilityRule(?RuleEntity $availabilityRule): void
  209.     {
  210.         $this->availabilityRule $availabilityRule;
  211.     }
  212.     public function getAvailabilityRuleId(): string
  213.     {
  214.         return $this->availabilityRuleId;
  215.     }
  216.     public function setAvailabilityRuleId(string $availabilityRuleId): void
  217.     {
  218.         $this->availabilityRuleId $availabilityRuleId;
  219.     }
  220.     public function getMediaId(): ?string
  221.     {
  222.         return $this->mediaId;
  223.     }
  224.     public function setMediaId(string $mediaId): void
  225.     {
  226.         $this->mediaId $mediaId;
  227.     }
  228.     public function getTaxId(): ?string
  229.     {
  230.         return $this->taxId;
  231.     }
  232.     public function setTaxId(?string $taxId): void
  233.     {
  234.         $this->taxId $taxId;
  235.     }
  236.     public function getMedia(): ?MediaEntity
  237.     {
  238.         return $this->media;
  239.     }
  240.     public function setMedia(MediaEntity $media): void
  241.     {
  242.         $this->media $media;
  243.     }
  244.     public function getTags(): ?TagCollection
  245.     {
  246.         return $this->tags;
  247.     }
  248.     public function setTags(TagCollection $tags): void
  249.     {
  250.         $this->tags $tags;
  251.     }
  252.     public function getTaxType(): string
  253.     {
  254.         return $this->taxType;
  255.     }
  256.     public function setTaxType(string $taxType): void
  257.     {
  258.         $this->taxType $taxType;
  259.     }
  260.     public function getTax(): ?TaxEntity
  261.     {
  262.         return $this->tax;
  263.     }
  264.     public function setTax(TaxEntity $tax): void
  265.     {
  266.         $this->tax $tax;
  267.     }
  268. }