id; } /** * Set name * * @param string $name * @return Lang */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set code * * @param string $file * @return Lang */ public function setCode($code) { $this->code = $code; return $this; } /** * Get code * * @return string */ public function getCode() { return $this->code; } /** * Set enabled * * @param boolean $enabled * @return Lang */ public function setEnabled($enabled) { $this->enabled = $enabled; return $this; } /** * Get enabled * * @return boolean */ public function getEnabled() { return $this->enabled; } /** * Check if language is enabled * * @return boolean */ public function isEnabled() { return $this->enabled; } }