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.      * Constructor
  139.      */
  140.     public function __construct()
  141.     {
  142.         $this->OptionImages = new \Doctrine\Common\Collections\ArrayCollection();
  143.     }
  144.     public function __toString()
  145.     {
  146.         return $this->getName();
  147.     }
  148.     public function getId()
  149.     {
  150.         return $this->id;
  151.     }
  152.     public function setName($name)
  153.     {
  154.         $this->name $name;
  155.         return $this;
  156.     }
  157.     public function getName()
  158.     {
  159.         return $this->name;
  160.     }
  161.     public function setDescription($description)
  162.     {
  163.         $this->description $description;
  164.         return $this;
  165.     }
  166.     public function getDescription()
  167.     {
  168.         return $this->description;
  169.     }
  170.     public function setCreateDate($date)
  171.     {
  172.         $this->create_date $date;
  173.         return $this;
  174.     }
  175.     public function getCreateDate()
  176.     {
  177.         return $this->create_date;
  178.     }
  179.     public function setUpdateDate($date)
  180.     {
  181.         $this->update_date $date;
  182.         return $this;
  183.     }
  184.     public function getUpdateDate()
  185.     {
  186.         return $this->update_date;
  187.     }
  188.     public function setSortNo($sortNo)
  189.     {
  190.         $this->sort_no $sortNo;
  191.         return $this;
  192.     }
  193.     public function getSortNo()
  194.     {
  195.         return $this->sort_no;
  196.     }
  197.     public function setDisableFlg($flg)
  198.     {
  199.         $this->disable_flg $flg;
  200.         return $this;
  201.     }
  202.     public function getDisableFlg()
  203.     {
  204.         return $this->disable_flg;
  205.     }
  206.     public function setInitFlg($flg)
  207.     {
  208.         $this->init_flg $flg;
  209.         return $this;
  210.     }
  211.     public function getInitFlg()
  212.     {
  213.         return $this->init_flg;
  214.     }
  215.     public function setHiddenFlg($flg)
  216.     {
  217.         $this->hidden_flg $flg;
  218.         return $this;
  219.     }
  220.     public function getHiddenFlg()
  221.     {
  222.         return $this->hidden_flg;
  223.     }
  224.     public function setValue($value)
  225.     {
  226.         $this->value $value;
  227.         return $this;
  228.     }
  229.     public function getValue()
  230.     {
  231.         return $this->value;
  232.     }
  233.     public function setDeliveryFreeFlg($flg)
  234.     {
  235.         $this->delivery_free_flg $flg;
  236.         return $this;
  237.     }
  238.     public function getDeliveryFreeFlg()
  239.     {
  240.         return $this->delivery_free_flg;
  241.     }
  242.     public function setMultipleFlg($flg)
  243.     {
  244.         $this->multiple_flg $flg;
  245.         return $this;
  246.     }
  247.     public function getMultipleFlg()
  248.     {
  249.         return $this->multiple_flg;
  250.     }
  251.     public function setOption(\Plugin\ProductOption42\Entity\Option $Option)
  252.     {
  253.         $this->Option $Option;
  254.         return $this;
  255.     }
  256.     public function getOption()
  257.     {
  258.         return $this->Option;
  259.     }
  260.     public function setCreator(\Eccube\Entity\Member $creator)
  261.     {
  262.         $this->Creator $creator;
  263.         return $this;
  264.     }
  265.     public function addOptionImage(\Plugin\ProductOption42\Entity\OptionImage $optionImage)
  266.     {
  267.         $this->OptionImages[] = $optionImage;
  268.         return $this;
  269.     }
  270.     public function removeOptionImage(\Plugin\ProductOption42\Entity\OptionImage $optionImage)
  271.     {
  272.         return $this->OptionImages->removeElement($optionImage);
  273.     }
  274.     public function getOptionImages()
  275.     {
  276.         return $this->OptionImages;
  277.     }
  278.     public function getCreator()
  279.     {
  280.         return $this->Creator;
  281.     }
  282. }