app/Plugin/ProductOption42/Entity/OptionCategory.php line 25

Open in your IDE?
  1. <?php
  2. /*
  3.  * Plugin Name : ProductOption
  4.  *
  5.  * Copyright (C) BraTech Co., Ltd. All Rights Reserved.
  6.  * http://www.bratech.co.jp/
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Plugin\ProductOption42\Entity;
  12. use Doctrine\ORM\Mapping as ORM;
  13. /**
  14.  * OptionCategory
  15.  *
  16.  * @ORM\Table(name="plg_productoption_dtb_optioncategory")
  17.  * @ORM\InheritanceType("SINGLE_TABLE")
  18.  * @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255)
  19.  * @ORM\HasLifecycleCallbacks()
  20.  * @ORM\Entity(repositoryClass="Plugin\ProductOption42\Repository\OptionCategoryRepository")
  21.  */
  22. class OptionCategory extends \Eccube\Entity\AbstractEntity
  23. {
  24.     const ON 1;
  25.     const OFF 0;
  26.     private $label;
  27.     public function setLabel($label)
  28.     {
  29.         $this->label $label;
  30.         return $this;
  31.     }
  32.     public function getLabel()
  33.     {
  34.         return $this->label;
  35.     }
  36.     /**
  37.      * @var int
  38.      *
  39.      * @ORM\Column(name="id", type="integer", options={"unsigned":true})
  40.      * @ORM\Id
  41.      * @ORM\GeneratedValue(strategy="IDENTITY")
  42.      */
  43.     private $id;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="name", type="string", length=255, nullable=true)
  48.      */
  49.     private $name;
  50.     /**
  51.      * @var string|null
  52.      *
  53.      * @ORM\Column(name="description", type="string", length=4000, nullable=true)
  54.      */
  55.     private $description;
  56.     /**
  57.      * @var boolean|null
  58.      *
  59.      * @ORM\Column(name="disable_flg", type="boolean", nullable=true)
  60.      */
  61.     private $disable_flg;
  62.     /**
  63.      * @var boolean|null
  64.      *
  65.      * @ORM\Column(name="init_flg", type="boolean", nullable=true)
  66.      */
  67.     private $init_flg;
  68.     /**
  69.      * @var boolean|null
  70.      *
  71.      * @ORM\Column(name="hidden_flg", type="boolean", nullable=true)
  72.      */
  73.     private $hidden_flg;
  74.     /**
  75.      * @var string|null
  76.      *
  77.      * @ORM\Column(name="value", type="decimal", precision=12, scale=2, nullable=true)
  78.      */
  79.     private $value;
  80.     /**
  81.      * @var int|null
  82.      *
  83.      * @ORM\Column(name="delivery_free_flg", type="smallint", nullable=true)
  84.      */
  85.     private $delivery_free_flg;
  86.     /**
  87.      * @var int|null
  88.      *
  89.      * @ORM\Column(name="multiple_flg", type="smallint", nullable=true)
  90.      */
  91.     private $multiple_flg;
  92.     /**
  93.      * @var int
  94.      *
  95.      * @ORM\Column(name="sort_no", type="integer")
  96.      */
  97.     private $sort_no;
  98.     /**
  99.      * @var \DateTime
  100.      *
  101.      * @ORM\Column(name="create_date", type="datetimetz")
  102.      */
  103.     private $create_date;
  104.     /**
  105.      * @var \DateTime
  106.      *
  107.      * @ORM\Column(name="update_date", type="datetimetz")
  108.      */
  109.     private $update_date;
  110.     /**
  111.      * @var \Plugin\ProductOption42\Entity\Option
  112.      *
  113.      * @ORM\ManyToOne(targetEntity="Plugin\ProductOption42\Entity\Option", inversedBy="OptionCategories")
  114.      * @ORM\JoinColumns({
  115.      *   @ORM\JoinColumn(name="option_id", referencedColumnName="id")
  116.      * })
  117.      */
  118.     private $Option;
  119.     /**
  120.      * @var \Doctrine\Common\Collections\Collection
  121.      *
  122.      * @ORM\OneToMany(targetEntity="Plugin\ProductOption42\Entity\OptionImage", mappedBy="OptionCategory", cascade={"remove"})
  123.      * @ORM\OrderBy({
  124.      *     "sort_no"="ASC"
  125.      * })
  126.      */
  127.     private $OptionImages;
  128.     /**
  129.      * @var \Eccube\Entity\Member
  130.      *
  131.      * @ORM\ManyToOne(targetEntity="Eccube\Entity\Member")
  132.      * @ORM\JoinColumns({
  133.      *   @ORM\JoinColumn(name="creator_id", referencedColumnName="id")
  134.      * })
  135.      */
  136.     private $Creator;
  137.     /**
  138.      * @var string|null
  139.      *
  140.      * @ORM\Column(name="delivery_days", type="decimal", precision=12, scale=2, nullable=true)
  141.      */
  142.     private $delivery_days;
  143.     /**
  144.      * Constructor
  145.      */
  146.     public function __construct()
  147.     {
  148.         $this->OptionImages = new \Doctrine\Common\Collections\ArrayCollection();
  149.     }
  150.     public function __toString()
  151.     {
  152.         return $this->getName();
  153.     }
  154.     public function getId()
  155.     {
  156.         return $this->id;
  157.     }
  158.     public function setName($name)
  159.     {
  160.         $this->name $name;
  161.         return $this;
  162.     }
  163.     public function getName()
  164.     {
  165.         return $this->name;
  166.     }
  167.     public function setDescription($description)
  168.     {
  169.         $this->description $description;
  170.         return $this;
  171.     }
  172.     public function getDescription()
  173.     {
  174.         return $this->description;
  175.     }
  176.     public function setCreateDate($date)
  177.     {
  178.         $this->create_date $date;
  179.         return $this;
  180.     }
  181.     public function getCreateDate()
  182.     {
  183.         return $this->create_date;
  184.     }
  185.     public function setUpdateDate($date)
  186.     {
  187.         $this->update_date $date;
  188.         return $this;
  189.     }
  190.     public function getUpdateDate()
  191.     {
  192.         return $this->update_date;
  193.     }
  194.     public function setSortNo($sortNo)
  195.     {
  196.         $this->sort_no $sortNo;
  197.         return $this;
  198.     }
  199.     public function getSortNo()
  200.     {
  201.         return $this->sort_no;
  202.     }
  203.     public function setDisableFlg($flg)
  204.     {
  205.         $this->disable_flg $flg;
  206.         return $this;
  207.     }
  208.     public function getDisableFlg()
  209.     {
  210.         return $this->disable_flg;
  211.     }
  212.     public function setInitFlg($flg)
  213.     {
  214.         $this->init_flg $flg;
  215.         return $this;
  216.     }
  217.     public function getInitFlg()
  218.     {
  219.         return $this->init_flg;
  220.     }
  221.     public function setHiddenFlg($flg)
  222.     {
  223.         $this->hidden_flg $flg;
  224.         return $this;
  225.     }
  226.     public function getHiddenFlg()
  227.     {
  228.         return $this->hidden_flg;
  229.     }
  230.     public function setValue($value)
  231.     {
  232.         $this->value $value;
  233.         return $this;
  234.     }
  235.     public function getValue()
  236.     {
  237.         return $this->value;
  238.     }
  239.     //発送日数
  240.     public function setDeliveryDays($delivery_days)
  241.     {
  242.         $this->delivery_days $delivery_days;
  243.         return $this;
  244.     }
  245.     public function getDeliveryDays()
  246.     {
  247.         return $this->delivery_days;
  248.     }
  249.     public function setDeliveryFreeFlg($flg)
  250.     {
  251.         $this->delivery_free_flg $flg;
  252.         return $this;
  253.     }
  254.     public function getDeliveryFreeFlg()
  255.     {
  256.         return $this->delivery_free_flg;
  257.     }
  258.     public function setMultipleFlg($flg)
  259.     {
  260.         $this->multiple_flg $flg;
  261.         return $this;
  262.     }
  263.     public function getMultipleFlg()
  264.     {
  265.         return $this->multiple_flg;
  266.     }
  267.     public function setOption(\Plugin\ProductOption42\Entity\Option $Option)
  268.     {
  269.         $this->Option $Option;
  270.         return $this;
  271.     }
  272.     public function getOption()
  273.     {
  274.         return $this->Option;
  275.     }
  276.     public function setCreator(\Eccube\Entity\Member $creator)
  277.     {
  278.         $this->Creator $creator;
  279.         return $this;
  280.     }
  281.     public function addOptionImage(\Plugin\ProductOption42\Entity\OptionImage $optionImage)
  282.     {
  283.         $this->OptionImages[] = $optionImage;
  284.         return $this;
  285.     }
  286.     public function removeOptionImage(\Plugin\ProductOption42\Entity\OptionImage $optionImage)
  287.     {
  288.         return $this->OptionImages->removeElement($optionImage);
  289.     }
  290.     public function getOptionImages()
  291.     {
  292.         return $this->OptionImages;
  293.     }
  294.     public function getCreator()
  295.     {
  296.         return $this->Creator;
  297.     }
  298. }