src/Entity/Language.php line 21

Open in your IDE?
  1. <?php
  2. /**
  3.  * Language class represents simple model of Language entity
  4.  *
  5.  * $Project: Alliancemarkets2 $
  6.  * $Id$
  7.  *
  8.  * @package alliancemarkets2
  9.  * @author George Matyas <webexciter@yahoo.com>
  10.  * @version $Revision$
  11.  */
  12. namespace App\Entity;
  13. use Doctrine\ORM\Mapping as ORM;
  14. /**
  15.  * @ORM\Entity(repositoryClass="App\EntityRepo\LanguageRepo")
  16.  * @ORM\Table(name="language")
  17.  */
  18. class Language
  19. {
  20.     /**
  21.      * @ORM\Column(type="integer")
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue(strategy="AUTO")
  24.      */ 
  25.     private $langId=0;
  26.     /**
  27.      * @ORM\Column(type="string", length=100)
  28.      */
  29.     protected $langName;
  30.     /**
  31.      * @ORM\Column(type="string", length=100)
  32.      */    
  33.     protected $langKey
  34.     /**
  35.      * @ORM\Column(type="integer")
  36.      */ 
  37.     private $isLive=1;
  38.     /**
  39.      * Get langId
  40.      *
  41.      * @return integer
  42.      */
  43.     public function getLangId()
  44.     {
  45.         return $this->langId;
  46.     }
  47.     /**
  48.      * Set langName
  49.      *
  50.      * @param string $langName
  51.      *
  52.      * @return Language
  53.      */
  54.     public function setLangName($langName)
  55.     {
  56.         $this->langName $langName;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get langName
  61.      *
  62.      * @return string
  63.      */
  64.     public function getLangName()
  65.     {
  66.         return $this->langName;
  67.     }
  68.     /**
  69.      * Set langKey
  70.      *
  71.      * @param string $langKey
  72.      *
  73.      * @return Language
  74.      */
  75.     public function setLangKey($langKey)
  76.     {
  77.         $this->langKey $langKey;
  78.         return $this;
  79.     }
  80.     /**
  81.      * Get langKey
  82.      *
  83.      * @return string
  84.      */
  85.     public function getLangKey()
  86.     {
  87.         return $this->langKey;
  88.     }
  89.     /**
  90.      * Set isLive
  91.      *
  92.      * @param integer $isLive
  93.      *
  94.      * @return Language
  95.      */
  96.     public function setIsLive($isLive)
  97.     {
  98.         $this->isLive $isLive;
  99.         return $this;
  100.     }
  101.     /**
  102.      * Get isLive
  103.      *
  104.      * @return integer
  105.      */
  106.     public function getIsLive()
  107.     {
  108.         return $this->isLive;
  109.     }
  110. }