src/Entity/Currency.php line 11

Open in your IDE?
  1. <?php
  2. /**
  3.  * Waluta
  4.  */
  5. namespace App\Entity;
  6. /**
  7.  * @Doctrine\ORM\Mapping\Entity
  8.  * @Doctrine\ORM\Mapping\Table(name="currency")
  9.  */
  10. class Currency
  11. {
  12.     use \Knp\DoctrineBehaviors\Model\Translatable\Translatable;
  13.     use \Knp\DoctrineBehaviors\Model\Blameable\Blameable;
  14.     use \Knp\DoctrineBehaviors\Model\Timestampable\Timestampable;
  15.     /**
  16.      * @Doctrine\ORM\Mapping\Id
  17.      * @Doctrine\ORM\Mapping\Column(type="integer")
  18.      * @Doctrine\ORM\Mapping\GeneratedValue(strategy="AUTO")
  19.      */
  20.     protected $id;
  21.     /**
  22.      * @Doctrine\ORM\Mapping\Column(type="text", length=255)
  23.      */
  24.     protected $sign;
  25.     /**
  26.      * @Doctrine\ORM\Mapping\Column(name="currency_separator", type="text", length=255)
  27.      */
  28.     protected $separator;
  29.     /**
  30.      * @Doctrine\ORM\Mapping\Column(name="position_price", type="text", length=255)
  31.      */
  32.     protected $position;
  33.     /**
  34.      * Domyślny
  35.      * @Doctrine\ORM\Mapping\Column(type="boolean", options={"default"=0})
  36.      */
  37.     protected $isDefault;
  38.     /**
  39.      * Czy aktywny
  40.      * @Doctrine\ORM\Mapping\Column(type="boolean", options={"default"=0})
  41.      */
  42.     protected $isActive;
  43.     /**
  44.      * @Doctrine\ORM\Mapping\Column(name="factorPln", nullable=true, type="float")
  45.      */
  46.     protected $factorPln;
  47.     /**
  48.      * @Doctrine\ORM\Mapping\Column(name="iso_code", nullable=true, type="string")
  49.      */
  50.     protected $isoCode;
  51.     public function __toString()
  52.     {
  53.         return $this->getSign();
  54.     }
  55.     /**
  56.      * Get id
  57.      *
  58.      * @return integer
  59.      */
  60.     public function getId()
  61.     {
  62.         return $this->id;
  63.     }
  64.     /**
  65.      * Set sign
  66.      *
  67.      * @param string $sign
  68.      *
  69.      * @return Currency
  70.      */
  71.     public function setSign($sign)
  72.     {
  73.         $this->sign $sign;
  74.         return $this;
  75.     }
  76.     /**
  77.      * Get sign
  78.      *
  79.      * @return string
  80.      */
  81.     public function getSign()
  82.     {
  83.         return $this->sign;
  84.     }
  85.     /**
  86.      * Set isDefault
  87.      *
  88.      * @param boolean $isDefault
  89.      *
  90.      * @return Currency
  91.      */
  92.     public function setIsDefault($isDefault)
  93.     {
  94.         $this->isDefault $isDefault;
  95.         return $this;
  96.     }
  97.     /**
  98.      * Get isDefault
  99.      *
  100.      * @return boolean
  101.      */
  102.     public function getIsDefault()
  103.     {
  104.         return $this->isDefault;
  105.     }
  106.     /**
  107.      * Set isActive
  108.      *
  109.      * @param boolean $isActive
  110.      *
  111.      * @return Currency
  112.      */
  113.     public function setIsActive($isActive)
  114.     {
  115.         $this->isActive $isActive;
  116.         return $this;
  117.     }
  118.     /**
  119.      * Get isActive
  120.      *
  121.      * @return boolean
  122.      */
  123.     public function getIsActive()
  124.     {
  125.         return $this->isActive;
  126.     }
  127.     /**
  128.      * Obsługa tłumaczeń
  129.      * @param $method
  130.      * @param $arguments
  131.      * @return mixed
  132.      */
  133.     public function __call($method$arguments)
  134.     {
  135.         return $this->proxyCurrentLocaleTranslation($method$arguments);
  136.     }
  137.     public function getName()
  138.     {
  139.         return $this->translate()->getName();
  140.     }
  141.     /**
  142.      * Set separator
  143.      *
  144.      * @param string $separator
  145.      *
  146.      * @return Currency
  147.      */
  148.     public function setSeparator($separator)
  149.     {
  150.         $this->separator $separator;
  151.         return $this;
  152.     }
  153.     /**
  154.      * Get separator
  155.      *
  156.      * @return string
  157.      */
  158.     public function getSeparator()
  159.     {
  160.         return $this->separator;
  161.     }
  162.     /**
  163.      * Set position
  164.      *
  165.      * @param string $position
  166.      *
  167.      * @return Currency
  168.      */
  169.     public function setPosition($position)
  170.     {
  171.         $this->position $position;
  172.         return $this;
  173.     }
  174.     /**
  175.      * Get position
  176.      *
  177.      * @return string
  178.      */
  179.     public function getPosition()
  180.     {
  181.         return $this->position;
  182.     }
  183.     /**
  184.      * @return mixed
  185.      */
  186.     public function getFactorPln()
  187.     {
  188.         return $this->factorPln;
  189.     }
  190.     /**
  191.      * @param mixed $factorPln
  192.      */
  193.     public function setFactorPln($factorPln): void
  194.     {
  195.         $this->factorPln $factorPln;
  196.     }
  197.     /**
  198.      * @return mixed
  199.      */
  200.     public function getIsoCode()
  201.     {
  202.         return $this->isoCode;
  203.     }
  204.     /**
  205.      * @param mixed $isoCode
  206.      */
  207.     public function setIsoCode($isoCode)
  208.     {
  209.         $this->isoCode $isoCode;
  210.     }
  211. }